Skip to content

Commit 839c480

Browse files
committed
add links
1 parent bd705be commit 839c480

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/src/home.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Generated models can be used with solvers throughout the broader
1616
for sensitivity analysis, parameter estimation, machine learning applications,
1717
etc).
1818

19-
## Features
19+
## [Features](@id doc_home_features)
2020

21-
#### Features of Catalyst
21+
#### [Features of Catalyst](@id doc_home_features_catalyst)
2222
- [The Catalyst DSL](@ref ref) provides a simple and readable format for manually specifying reaction
2323
network models using chemical reaction notation.
2424
- Catalyst `ReactionSystem`s provides a symbolic representation of reaction networks,
@@ -53,7 +53,7 @@ etc).
5353
deterministic and stochastic terms within resulting ODE, SDE or jump models.
5454
- [Steady states](@ref ref) (and their [stabilities](@ref ref)) can be computed for model ODE representations.
5555

56-
#### Features of Catalyst composing with other packages
56+
#### [Features of Catalyst composing with other packages](@id doc_home_features_composed)
5757
- [OrdinaryDiffEq.jl](https://github.com/SciML/OrdinaryDiffEq.jl) Can be used to [perform model ODE
5858
simulations](@ref ref).
5959
- [StochasticDiffEq.jl](https://github.com/SciML/StochasticDiffEq.jl) Can be used to [perform model
@@ -83,7 +83,7 @@ etc).
8383
- [GlobalSensitivity.jl](https://github.com/SciML/GlobalSensitivity.jl) can be used to perform
8484
[global sensitivity analysis](@ref ref) of model behaviors.
8585

86-
#### Features of packages built upon Catalyst
86+
#### [Features of packages built upon Catalyst](@id doc_home_features_other_packages)
8787
- Catalyst [`ReactionSystem`](@ref)s can be [imported from SBML files](@ref ref) via
8888
[SBMLImporter.jl](https://github.com/SciML/SBMLImporter.jl) and [SBMLToolkit.jl](https://github.com/SciML/SBMLToolkit.jl),
8989
and [from BioNetGen .net files](@ref ref) and various stoichiometric matrix network representations
@@ -149,9 +149,9 @@ is also needed.
149149

150150
A more throughout guide for setting up Catalyst and installing Julia packages can be found [here](@ref catalyst_for_new_julia_users_packages).
151151

152-
## Illustrative example
152+
## [Illustrative example](@id doc_home_example)
153153

154-
#### Deterministic ODE simulation of Michaelis-Menten enzyme kinetics
154+
#### [Deterministic ODE simulation of Michaelis-Menten enzyme kinetics](@id doc_home_example_ode)
155155
Here we show a simple example where a model is created using the Catalyst DSL, and then simulated as
156156
an ordinary differential equation.
157157

@@ -177,7 +177,7 @@ sol = solve(ode)
177177
plot(sol; lw = 5)
178178
```
179179

180-
#### Stochastic jump simulations
180+
#### [Stochastic jump simulations](@id doc_home_example_jump)
181181
The same model can be used as input to other types of simulations. E.g. here we instead perform a
182182
jump simulation
183183
```@example home_simple_example
@@ -190,7 +190,7 @@ jump_sol = solve(jprob, SSAStepper(); seed = 1234) # hide
190190
plot(jump_sol; lw = 2)
191191
```
192192

193-
## Elaborate example
193+
## [Elaborate example](@id doc_home_elaborate_example)
194194
In the above example, we used basic Catalyst-based workflows to simulate a simple model. Here we
195195
instead show how various Catalyst features can compose to create a much more advanced model. Our
196196
model describes how the volume of a cell ($V$) is affected by a growth factor ($G$). The growth

0 commit comments

Comments
 (0)