Skip to content

Commit 399374d

Browse files
committed
save progress
1 parent c7eef72 commit 399374d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/pages.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ pages = Any[
1313
#"model_creation/constraint_equations.md",
1414
# Events.
1515
#"model_creation/parametric_stoichiometry.md",# Distributed parameters, rates, and initial conditions.
16+
"model_creation/model_file_loading_and_export.md",# Distributed parameters, rates, and initial conditions.
1617
# Loading and writing models to files.
1718
"model_creation/model_visualisation.md",
1819
#"model_creation/network_analysis.md",

docs/src/catalyst_applications/model_file_loading_and_export.md renamed to docs/src/model_creation/model_file_loading_and_export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Loading Chemical Reaction Network Models from Files
2-
Catalyst stores chemical reaction network (CRN) models in `ReactionSystem` structures. This tutorial describes how to load such `ReactionSystem`s from, and save them to, files. This can be used to save models between Julia sessions, or transfer them from one session to another. Furthermore, to facilitate the computation modelling of CRNs, several standardised file formats have been created to represent CRN models (e.g. [SBML](https://sbml.org/)). These enables e.g. CRN models to be shared between different software and programming languages. While Catalyst itself does not have the functionality for loading such files, we will here (briefly) introduce a few packages that can load files to Catalyst `ReactionSystem`s.
2+
Catalyst stores chemical reaction network (CRN) models in `ReactionSystem` structures. This tutorial describes how to load such `ReactionSystem`s from, and save them to, files. This can be used to save models between Julia sessions, or transfer them from one session to another. Furthermore, to facilitate the computation modelling of CRNs, several standardised file formats have been created to represent CRN models (e.g. [SBML](https://sbml.org/)). These enables CRN models to be shared between different softwares and programming languages. While Catalyst itself does not have the functionality for loading such files, we will here (briefly) introduce a few packages that can load files to Catalyst `ReactionSystem`s.
33

44
## Saving Catalyst models to, and loading them from, Julia files
55
Catalyst provides a `save_reaction_system` function, enabling the user to save a `ReactionSystem` to a file. Here we demonstrate it by first creating a simple catalysis network

0 commit comments

Comments
 (0)