Skip to content

Commit

Permalink
doc: clarify params.enzyme_comp in model adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
edkerk committed Jul 18, 2024
1 parent 9a0416d commit 3b5a506
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/geckomat/model_adapter/adapterTemplate.m
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@
% Reaction ID for biomass pseudoreaction
obj.params.bioRxn = 'r_4041';

% Compartment name in which the added enzymes should be located
% Name of the compartment where the protein pseudometabolites
% should be located (all be located in the same compartment,
% this does not interfere with them catalyzing reactions in
% different compartments). Typically, cytoplasm is chosen.
obj.params.enzyme_comp = 'cytoplasm';
end

Expand Down
4 changes: 4 additions & 0 deletions tutorials/full_ecModel/YeastGEMAdapter.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@

obj.params.bioRxn = 'r_4041';

% Name of the compartment where the protein pseudometabolites
% should be located (all be located in the same compartment,
% this does not interfere with them catalyzing reactions in
% different compartments). Typically, cytoplasm is chosen.
obj.params.enzyme_comp = 'cytoplasm';
end

Expand Down
4 changes: 4 additions & 0 deletions tutorials/light_ecModel/HumanGEMAdapter.m
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@

obj.params.bioRxn = 'MAR13082';

% Name of the compartment where the protein pseudometabolites
% should be located (all be located in the same compartment,
% this does not interfere with them catalyzing reactions in
% different compartments). Typically, cytoplasm is chosen.
obj.params.enzyme_comp = 'Cytosol';

end
Expand Down

0 comments on commit 3b5a506

Please sign in to comment.