Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
biocham
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
21
Issues
21
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Lifeware
biocham
Commits
d0e39c30
Commit
d0e39c30
authored
May 17, 2020
by
SOLIMAN Sylvain
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release/4.4.13'
parents
1df77daf
b7b92c25
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1577 additions
and
6 deletions
+1577
-6
.gitlab-ci.yml
.gitlab-ci.yml
+1
-1
about.pl
about.pl
+1
-1
binder/Dockerfile
binder/Dockerfile
+1
-1
biocham_jupyter/guinbextension/package.json
biocham_jupyter/guinbextension/package.json
+1
-1
biocham_jupyter/kernel/biocham_kernel/__init__.py
biocham_jupyter/kernel/biocham_kernel/__init__.py
+1
-1
library/examples/cmsb_2020/Benchmark.ipynb
library/examples/cmsb_2020/Benchmark.ipynb
+1420
-0
library/examples/cmsb_2020/rate_independence.ipynb
library/examples/cmsb_2020/rate_independence.ipynb
+151
-0
web/index.html
web/index.html
+1
-1
No files found.
.gitlab-ci.yml
View file @
d0e39c30
...
...
@@ -43,7 +43,7 @@ pages:
-
if [ -r content.zip ]; then unzip content.zip; rm -f content.zip public/*.zip ; fi
-
mkdir -p public
-
cp -r doc devdoc web/*.{html,png,zip} public
-
if [[ -n "$CI_COMMIT_TAG" ]] ; then cp public/biocham.zip public/biocham_$CI_COMMIT_TAG.zip ; mv public/doc public/doc_$CI_COMMIT_TAG ; ln -s doc_$CI_COMMIT_TAG public/doc ; fi
-
if [[ -n "$CI_COMMIT_TAG" ]] ; then cp public/biocham.zip public/biocham_$CI_COMMIT_TAG.zip ;
rm -rf public/doc_$CI_COMMIT_TAG ;
mv public/doc public/doc_$CI_COMMIT_TAG ; ln -s doc_$CI_COMMIT_TAG public/doc ; fi
-
cp public/biocham.zip public/biocham_latest.zip
-
zip -r content.zip public
-
mv content.zip public
...
...
about.pl
View file @
d0e39c30
...
...
@@ -8,7 +8,7 @@
about
/
0
]).
version
(
'4.4.1
2
'
).
version
(
'4.4.1
3
'
).
copyright
(
'Copyright (C) 2003-2020 Inria, EPI Lifeware, Saclay-Île de France, France'
...
...
binder/Dockerfile
View file @
d0e39c30
FROM
registry.gitlab.inria.fr/lifeware/biocham:v4.4.1
2
FROM
registry.gitlab.inria.fr/lifeware/biocham:v4.4.1
3
biocham_jupyter/guinbextension/package.json
View file @
d0e39c30
{
"name"
:
"gui"
,
"version"
:
"4.4.1
2
"
,
"version"
:
"4.4.1
3
"
,
"description"
:
"biocham gui in jupyter notebook"
,
"main"
:
"src/index.js"
,
"scripts"
:
{
...
...
biocham_jupyter/kernel/biocham_kernel/__init__.py
View file @
d0e39c30
"""Example magic"""
__version__
=
'4.4.1
2
'
__version__
=
'4.4.1
3
'
library/examples/cmsb_2020/Benchmark.ipynb
0 → 100644
View file @
d0e39c30
This diff is collapsed.
Click to expand it.
library/examples/cmsb_2020/rate_independence.ipynb
View file @
d0e39c30
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Biocham 4.4.11\n",
"Copyright (C) 2003-2020 Inria, EPI Lifeware, Saclay-Île de France, France,\n",
"license GNU GPL 2, http://lifeware.inria.fr/biocham4/\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 1"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"a + b => c."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"The output c is rate independent.\r\n",
"Time: 0.025 s\r\n"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"% testing outputs for permanence\n",
"test_rate_independence_invariants."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"The model is rate independent.\r\n",
"Time: 0.01 s\r\n"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"% testing the whole model for funnel conditions\n",
"test_rate_independence."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 2"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"clear_model.\n",
"a => x+c.\n",
"b => y+c.\n",
"x+y => z.\n",
"c+z => r."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"The output r is rate independent.\r\n",
"Time: 0.135 s\r\n"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"test_rate_independence_invariants."
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"The model is rate independent.\r\n",
"Time: 0.029 s\r\n"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"test_rate_independence."
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Biocham",
"language": "",
"name": "biocham"
},
"language_info": {
"codemirror_mode": "biocham",
"file_extension": ".bc",
"mimetype": "text/plain",
"name": "biocham",
"pygments_lexer": "prolog"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
web/index.html
View file @
d0e39c30
...
...
@@ -32,7 +32,7 @@
</head>
<body>
<h1>
The Biochemical Abstract Machine BIOCHAM 4
</h1>
<h1>
version 4.4.1
2
May 2020
</h1>
<h1>
version 4.4.1
3
May 2020
</h1>
<div
class=
"authors"
>
<p>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment