Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/literate/enzymes/enzyme_reactions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ rxns = Dict(

# ## Helper functions to generate oapply calls

cat(cat) = begin
cath(cat) = begin
catsym = first(cat)
out = oapply(catX, Dict([:inactX, :bindXX, :degXX, :bindXXinact, :degXXinact] .=> rxns[catsym]), Dict(
:X=>ob(cat),
Expand Down Expand Up @@ -176,9 +176,9 @@ cat_cat(cat1, cat2) = begin
end

functor(x) = oapply(x, Dict(
:catK=>cat(K),
:catS=>cat(S),
:catL=>cat(L),
:catK=>cath(K),
:catS=>cath(S),
:catL=>cath(L),
:catKcatS=>cat_cat(K,S),
:catKcatL=>cat_cat(K,L),
:catScatK=>cat_cat(S,K),
Expand Down