File tree Expand file tree Collapse file tree 2 files changed +30
-29
lines changed
Expand file tree Collapse file tree 2 files changed +30
-29
lines changed Original file line number Diff line number Diff line change 1+ # Release notes for sbmlsim 0.1.14
2+
3+ - Fix #81 , feature timecourse concatenation and reuse in timecoursesim
4+
5+ This allows simplified creation of multiple dosing timecourse simulations and reuse
6+ of timecourse definitions in multiple simulations. E.g. repeated timecourse ` [tc]*3 `
7+
8+ ```
9+ simulator = Simulator(MODEL_REPRESSILATOR)
10+ tc = Timecourse(
11+ start=0,
12+ end=50,
13+ steps=100,
14+ changes={"X": 10})
15+
16+ s = simulator._timecourse(
17+ simulation=TimecourseSim(
18+ [tc]*3
19+ )
20+ )
21+ ```
22+
23+ - Fix #82 , bugfix; remove time shift from discarded simulations
24+ - Fix #83 , allow empty timecourses in timecoursesim
25+ - Fix #86 , dependency update ray>=1.2.0
26+ - Fix #87 , weighting by counts in parameter fitting
27+ - Fix #88 , bugfix figure closing in parameter fitting
28+ - adding mypy configuration and initial mypy fixes
29+ - many flake8 fixes and type annotations
30+ - Fix #91 , support hex colors in plot
Original file line number Diff line number Diff line change 11# Release notes for sbmlsim x.y.z
2-
3- - Fix #81 , feature timecourse concatenation and reuse in timecoursesim
4-
5- This allows simplified creation of multiple dosing timecourse simulations and reuse
6- of timecourse definitions in multiple simulations. E.g. repeated timecourse ` [tc]*3 `
7-
8- ```
9- simulator = Simulator(MODEL_REPRESSILATOR)
10- tc = Timecourse(
11- start=0,
12- end=50,
13- steps=100,
14- changes={"X": 10})
15-
16- s = simulator._timecourse(
17- simulation=TimecourseSim(
18- [tc]*3
19- )
20- )
21- ```
22-
23- - Fix #82 , bugfix; remove time shift from discarded simulations
24- - Fix #83 , allow empty timecourses in timecoursesim
25- - Fix #86 , dependency update ray>=1.2.0
26- - Fix #87 , weighting by counts in parameter fitting
27- - Fix #88 , bugfix figure closing in parameter fitting
28- - adding mypy configuration
29- - many flake8 fixes and type annotations
30- - Fix #91 , support hex colors in plot
You can’t perform that action at this time.
0 commit comments