Skip to content

Commit

Permalink
fix: r_4196 NAD missing
Browse files Browse the repository at this point in the history
  • Loading branch information
edkerk committed Dec 2, 2023
1 parent f50b577 commit a9185e1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions code/modelCuration/v8_7_2.m → code/modelCuration/v9_0_0.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
% This scripts applies curations to be applied on yeast-GEM release 8.7.1, to
% get to yeast-GEM release 8.7.2.
% get to yeast-GEM release 9.0.0.
% Indicate which Issue/PR are addressed. If multiple curations are performed
% before a new release is made, just add the required code to this script. If
% more extensive coding is required, you can write a separate (generic) function
Expand All @@ -12,7 +12,7 @@
codeDir=pwd();
model = getEarlierModelVersion('8.7.1');
model.id='yeastGEM_develop';
dataDir=fullfile(pwd(),'..','data','modelCuration','v8_7_2');
%dataDir=fullfile(pwd(),'..','data','modelCuration','v9.0.0'); % No dataDir required for these curations
cd modelCuration

%% Correct inbalanced reactions, based on metFormulas
Expand Down Expand Up @@ -42,6 +42,9 @@
{'ATP[c] + H+[c] + nicotinate[c] + PRPP[c] => ADP[c] + diphosphate[c] + nicotinic acid D-ribonucleotide[c] + phosphate[c]',...
'ATP[m] + H+[m] + nicotinate[m] + PRPP[m] => ADP[m] + diphosphate[m] + nicotinic acid D-ribonucleotide[m] + phosphate[m]'},3);

% r_4196 (NADH:ferricytochrome-b5 oxidoreductase) is unbalanced, NAD is missing as product
model = changeRxns(model,'r_4722','NADH[erm] + 2 Ferricytochrome b5[erm] <=> H+[erm] + 2 Ferrocytochrome b5[erm] + NAD[erm]',3);

%% DO NOT CHANGE OR REMOVE THE CODE BELOW THIS LINE.
% Show some metrics:
cd(fullfile(codeDir,'modelTests'))
Expand Down

0 comments on commit a9185e1

Please sign in to comment.