Skip to content

Commit ead4e8f

Browse files
committed
Update paper
1 parent 9bdb7ad commit ead4e8f

File tree

4 files changed

+81
-1
lines changed

4 files changed

+81
-1
lines changed

.github/workflows/draft-pdf.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Draft PDF
2+
on: [push]
3+
4+
jobs:
5+
paper:
6+
runs-on: ubuntu-latest
7+
name: Paper Draft
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
- name: Build draft PDF
12+
uses: openjournals/openjournals-draft-action@master
13+
with:
14+
journal: joss
15+
# This should be the path to the paper within your repo.
16+
paper-path: paper/paper.md
17+
- name: Upload
18+
uses: actions/upload-artifact@v4
19+
with:
20+
name: paper
21+
# This is the output path where Pandoc will write the compiled
22+
# PDF. Note, this should be the same directory as the input
23+
# paper.md
24+
path: paper.pdf

paper/paper.md

+32-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
---
2+
title: 'ratesb_python: A Python Package for Analyzing Rate Laws in Biological Models'
3+
tags:
4+
- Python
5+
- SBML
6+
- Systems Biology
7+
- Kinetics
8+
- Rate Laws
9+
authors:
10+
- name: Longxuan Fan
11+
orcid: 0009-0006-6523-8302
12+
affiliation: 1
13+
- name: Joseph L. Hellerstein
14+
affiliation: 2
15+
- name: Herbert M. Sauro
16+
affiliation: 3
17+
affiliations:
18+
- name: Viterbi School of Engineering, University of Southern California
19+
index: 1
20+
- name: eScience Institute, University of Washington
21+
index: 2
22+
- name: Department of Bioengineering, University of Washington
23+
index: 3
24+
date: 14 October 2024
25+
bibliography: paper.bib
26+
---
27+
128
# Summary
229

330
`ratesb_python` is a Python package that analyzes mechanistic models of biological systems that consist of networks of chemical reactions like $2 H_2 + O_2 \rightarrow 2 H_2O$ [with rate laws such as $k [h_2]^2 [O_2]$ that describe the rate at which the reaction proceeds]. The package focuses on rate laws of reactions, algebraic expressiona that specify the rate at which reactants (e.g., $H_2, O_2$) are converted into products (e.g., $O_2$). ``ratesb_python`` analyzes rate laws to detect errors and warnings that affect the robustness and accuracy of models that use the SBML (Systems Biology Markup Language) community standard for model model descriptions [@Hucka2003].
@@ -52,4 +79,8 @@ Error and warning messages generated during the analysis are systematically mana
5279

5380
# Future Work
5481

55-
Future developments for `ratesb_python` include enriching the library of checks and optimizing the performance of classification algorithms. The goal is to expand the tool's capabilities, making it a more comprehensive resource for developers and researchers alike, and to introduce customization options for error and warning management, further enhancing its utility in systems biology.
82+
Future developments for `ratesb_python` include enriching the library of checks and optimizing the performance of classification algorithms. The goal is to expand the tool's capabilities, making it a more comprehensive resource for developers and researchers alike, and to introduce customization options for error and warning management, further enhancing its utility in systems biology.
83+
84+
---
85+
bibliography: paper.bib
86+
---

paper/paper.pdf

205 KB
Binary file not shown.

paper/paper.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
title: 'ratesb_python: A Python Package for Analyzing Rate Laws in Biological Models'
2+
tags:
3+
- Python
4+
- SBML
5+
- Systems Biology
6+
- Kinetics
7+
- Rate Laws
8+
authors:
9+
- name: "Longxuan Fan"
10+
orcid: "0009-0006-6523-8302"
11+
affiliation: 1
12+
- name: "Joseph L. Hellerstein"
13+
affiliation: 2
14+
- name: "Herbert M. Sauro"
15+
affiliation: 3
16+
affiliations:
17+
- name: "Viterbi School of Engineering, University of Southern California"
18+
index: 1
19+
- name: "eScience Institute, University of Washington"
20+
index: 2
21+
- name: "Department of Bioengineering, University of Washington"
22+
index: 3
23+
date: 2024-10-14
24+
bibliography: paper.bib
25+
repository: "https://github.com/sys-bio/ratesb_python"

0 commit comments

Comments
 (0)