-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1956 from AMICI-dev/release_0.16.0
Release 0.16.0
- Loading branch information
Showing
49 changed files
with
1,673 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,5 +24,7 @@ build: | |
# for custom doxygen | ||
- libclang-cpp9 | ||
- libclang1-9 | ||
- libatlas-base-dev | ||
- swig | ||
tools: | ||
python: "3.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# binder/repo2docker configuration | ||
|
||
Configuration files for [binder](https://mybinder.org/) / repo2docker. | ||
|
||
Doc: https://mybinder.readthedocs.io/en/latest/using/config_files.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
clang | ||
libatlas-base-dev | ||
libboost-serialization-dev | ||
libhdf5-serial-dev | ||
swig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"id": "f7ebed12-4309-4c92-a54e-da80ccd2d5e7", | ||
"metadata": {}, | ||
"source": [ | ||
"# AMICI example notebooks\n", | ||
"\n", | ||
"* [Getting started](../documentation/GettingStarted.ipynb)\n", | ||
"\n", | ||
" Brief intro to AMICI for first-time users.\n", | ||
"\n", | ||
"* [Example \"steadystate\"](../python/examples/example_steadystate/ExampleSteadystate.ipynb)\n", | ||
"\n", | ||
" A more detailed introduction to the AMICI interface, demonstrating sensitivity analysis, various options, finite difference checks, ...\n", | ||
"\n", | ||
"* [PEtab import / simulation](../python/examples/example_petab/petab.ipynb)\n", | ||
"\n", | ||
" How to import and simulate PEtab problems.\n", | ||
"\n", | ||
"* [Experimental conditions](../python/examples/example_presimulation/ExampleExperimentalConditions.ipynb)\n", | ||
"\n", | ||
" How to represent different experimental conditions in AMICI and how to use preequilibration.\n", | ||
"\n", | ||
"* [Steadystate (sensitivities)](../python/examples/example_constant_species/ExampleEquilibrationLogic.ipynb)\n", | ||
"\n", | ||
" Describes and demonstrates the various algorithms for computing steady states and steady-state sensitivities.\n", | ||
"\n", | ||
"* [Simulation errors](../python/examples/example_errors.ipynb)\n", | ||
"\n", | ||
" Demonstrates common simulation failures and gives some hints for interpreting, debugging, and fixing them.\n" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "", | ||
"name": "" | ||
}, | ||
"language_info": { | ||
"name": "" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
set -eou pipefail | ||
|
||
pip install -e "git+https://github.com/Benchmarking-Initiative/Benchmark-Models-PEtab.git@master#subdirectory=src/python&egg=benchmark_models_petab" | ||
pip install -e python/sdist[petab,pysb] | ||
|
||
scripts/buildBNGL.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python-3.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
set -eou pipefail | ||
|
||
export BNGPATH="$(pwd)/ThirdParty/BioNetGen-2.7.0" | ||
|
||
exec "$@" |
Oops, something went wrong.