Skip to content

Commit

Permalink
Revert "Merge pull request #372 from HossFir/update-reportEnzymeUsage"
Browse files Browse the repository at this point in the history
This reverts commit cc8e449, reversing
changes made to 883b40d.
  • Loading branch information
edkerk committed May 27, 2024
1 parent cb54747 commit 94efe9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
2 changes: 0 additions & 2 deletions src/geckomat/utilities/enzymeUsage.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
% absUsage vector of absolute enzyme usages
% UB vector of enzyme exchange reaction upper bounds
% protID string array of matching protein IDs
% fluxes vector of fluxes, copy of input fluxes
%
% Usage:
% usageData = enzymeUsage(ecModel,fluxes,zero)
Expand All @@ -43,7 +42,6 @@
usageData.LB = ecModel.lb(rxnIdx);
usageData.absUsage = abs(fluxes(rxnIdx));
usageData.capUsage = abs(usageData.absUsage./usageData.LB);
usageData.fluxes = fluxes;

if ~zero
nonzero = usageData.absUsage<0;
Expand Down
19 changes: 2 additions & 17 deletions src/geckomat/utilities/reportEnzymeUsage.m
Original file line number Diff line number Diff line change
Expand Up @@ -61,20 +61,7 @@
topUsage.rxnNames = {};
topUsage.grRules = {};

% Calculate the protein pool flux from the 'prot_pool_exchange' reaction
protPoolExchangeFlux = -ecModel.lb(strcmp(ecModel.rxns,'prot_pool_exchange'));

fluxValues = usageData.fluxes;

% Sum fluxes for all 'usage_prot_' reactions, excluding the 'usage_prot_standard'
usageProtIndices = startsWith(ecModel.rxns, 'usage_prot_') & ...
~contains(ecModel.rxns, 'standard');

% Sum the absolute values of the usage fluxes
totalUsageProtFlux = sum(abs(fluxValues(usageProtIndices)));

% Define the new protein pool as the sum of prot_pool_exchange flux and total usage_prot fluxes
protPool = (protPoolExchangeFlux + totalUsageProtFlux)/100;
protPool = -ecModel.lb(strcmp(ecModel.rxns,'prot_pool_exchange'))/100;

for i=1:numel(topEnzyme)
[rxns, kcat, idx, rxnNames, grRules] = getReactionsFromEnzyme(ecModel,topEnzyme{i});
Expand All @@ -89,7 +76,5 @@
topUsage.rxnNames(end+1:end+rxnNumber,1) = rxnNames;
topUsage.grRules(end+1:end+rxnNumber,1) = grRules;
end
usageReport.topAbsUsage = struct2table(topUsage);
usageReport.totalProtPool = protPoolExchangeFlux;
usageReport.totalUsageFlux = totalUsageProtFlux;
usageReport.topAbsUsage = struct2table(topUsage);
end

0 comments on commit 94efe9e

Please sign in to comment.