Skip to content

Commit b7a4c06

Browse files
feat: include gap-filling step
1 parent 737152c commit b7a4c06

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

code/masterScriptMouseGEM.m

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%
44
%
55
% PURPOSE: This script is for reconstruction of the Mouse-GEM, by using
6-
% the Human-GEM as template and taking in account mouse-specific
6+
% the Human-GEM as template and taking into account mouse-specific
77
% pathways/reactions.
88
%
99
%
@@ -37,7 +37,6 @@
3737
% get ortholog pairs from human to mouse
3838
mouseOrthologPairs = extractAllianceGenomeOrthologs('human2MouseOrthologs.json');
3939
mouseGEM = getModelFromOrthology(ihuman, mouseOrthologPairs);
40-
mouseGEM.id = 'Mouse-GEM';
4140

4241

4342

@@ -68,9 +67,14 @@
6867
[mouseGEM, modelChanges] = addMetabolicNetwork(mouseGEM, rxnsToAdd, metsToAdd);
6968

7069

70+
%% Gap-filling for biomass formation
71+
[mouseGEM, gapfillNetwork]=gapfill4Biomass(mouseGEM,ihuman);
72+
% Added 0 reactions for gap-filling
73+
7174

7275
%% Save the model into mat, yml, and xml
7376

77+
mouseGEM.id = 'Mouse-GEM';
7478
save('../model/Mouse-GEM.mat', 'mouseGEM');
7579
writeHumanYaml(mouseGEM, '../model/Mouse-GEM.yml');
7680
exportModel(mouseGEM, '../model/Mouse-GEM.xml');

0 commit comments

Comments
 (0)