|
1 | 1 | # Catalyst.jl
|
2 | 2 |
|
3 |
| -[](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged) |
4 | 3 | [](https://docs.sciml.ai/Catalyst/stable/)
|
5 | 4 | [](https://docs.sciml.ai/Catalyst/stable/api/catalyst_api/)
|
6 | 5 | [](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged)
|
| 6 | +[](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1011530) |
7 | 7 |
|
8 | 8 | [](https://github.com/SciML/Catalyst.jl/actions?query=workflow%3ACI)
|
9 | 9 | [](https://codecov.io/gh/SciML/Catalyst.jl)
|
@@ -46,7 +46,6 @@ An overview of the package and its features (as of version 13) can also be found
|
46 | 46 | ## Features
|
47 | 47 |
|
48 | 48 | #### Features of Catalyst
|
49 |
| - |
50 | 49 | - [The Catalyst DSL](@ref ref) provides a simple and readable format for manually specifying reaction
|
51 | 50 | network models using chemical reaction notation.
|
52 | 51 | - Catalyst `ReactionSystem`s provides a symbolic representation of reaction networks,
|
@@ -81,7 +80,6 @@ An overview of the package and its features (as of version 13) can also be found
|
81 | 80 | deterministic and stochastic terms within resulting ODE, SDE or jump models.
|
82 | 81 | - [Steady states](@ref ref) (and their [stabilities](@ref ref)) can be computed for model ODE representations.
|
83 | 82 |
|
84 |
| - |
85 | 83 | #### Features of Catalyst composing with other packages
|
86 | 84 | - [OrdinaryDiffEq.jl](https://github.com/SciML/OrdinaryDiffEq.jl) Can be used to [perform model ODE
|
87 | 85 | simulations](@ref ref).
|
@@ -177,7 +175,6 @@ plot(jump_sol; lw = 2)
|
177 | 175 |
|
178 | 176 |
|
179 | 177 | ## Elaborate example
|
180 |
| - |
181 | 178 | In the above example, we used basic Catalyst-based workflows to simulate a simple model. Here we instead show how various Catalyst features can compose to create a much more advanced model. Our model describes how the volume of a cell ($V$) is affected by a growth factor ($G$). The growth factor only promotes growth while in its phosphorylated form ($Gᴾ$). The phosphorylation of $G$ ($G \to Gᴾ$) is promoted by sunlight (modelled as the cyclic sinusoid $kₐ*(sin(t)+1)$) phosphorylates the growth factor (producing $Gᴾ$). When the cell reaches a critical volume ($V$) it goes through cell division. First, we declare our model:
|
182 | 179 | ```julia
|
183 | 180 | using Catalyst
|
|
0 commit comments