Skip to content

Commit

Permalink
Fixed ordering to match docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-Hades committed Nov 25, 2024
1 parent fcb8eda commit 8d5ee91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/refinegems/classes/egcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def find_egcs(self, model:cobra.Model, with_reacs:bool=False,
if (flux > MIN_GROWTH_THRESHOLD or flux < -1.0 * MIN_GROWTH_THRESHOLD) and not rea.startswith("DISSI"):
egc_reactions[name][rea] = flux

return (egc_reactions, obj_vals)
return (obj_vals, egc_reactions)

# Helper functions for testing during solving process
# ---------------------------------------------------
Expand Down

0 comments on commit 8d5ee91

Please sign in to comment.