Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
vyudu committed Nov 22, 2024
1 parent d803b3b commit 9f2c47f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docs/src/introduction_to_catalyst/introduction_to_catalyst.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ such as GLMakie. Doing so and then using the `plot_network` function allows us t
visualize the network:
```julia
using Catalyst, GraphMakie, GLMakie
g = Graph(rn)
g = plot_network(rn)
```
giving

Expand All @@ -108,8 +108,11 @@ hillr(P₂,α,K,n), ∅ --> m₃
have rates that depend on the proteins, and hence lead to red arrows from each
`Pᵢ`.

Note, from the REPL or scripts one can always use [`savegraph`](@ref) to save
the graph (assuming `Graphviz` is installed).
Note, from the REPL or scripts one can always use Makie's `save` function to save
the graph.
```julia
save("repressilator_graph.png", g)
```

## Mass action ODE models
Let's now use our `ReactionSystem` to generate and solve a corresponding mass
Expand Down

0 comments on commit 9f2c47f

Please sign in to comment.