-
Notifications
You must be signed in to change notification settings - Fork 7
Add abstraction for (SBML) models #133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6b26c69
796d042
796219b
d200396
52f0ec0
0736225
d798652
9a34c74
e0b6e74
2924c2c
507c196
7d9dae8
3d4cda5
d8d1774
ee977a7
c04a75d
69f826e
9bc1e6f
4996699
d540c47
78251a0
bb61a12
66e1bc4
ed7c23c
4dbcfe0
804188b
3b337b0
d66e18a
5464928
4dcf1f6
a9bf397
49e518c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -264,4 +264,4 @@ | |
| }, | ||
| "nbformat": 4, | ||
| "nbformat_minor": 2 | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -168,4 +168,4 @@ | |
| }, | ||
| "nbformat": 4, | ||
| "nbformat_minor": 2 | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -154,7 +154,7 @@ def get_unique_parameters(series): | |
|
|
||
| def split_parameter_replacement_list( | ||
| list_string: Union[str, numbers.Number], | ||
| delim: str = ';') -> List[Union[str, numbers.Number]]: | ||
| delim: str = PARAMETER_SEPARATOR) -> List[Union[str, numbers.Number]]: | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does it ever make sense to pass anything but
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably not for now. If the separator ever changes, it can be useful, but shouldn't hurt keeping the optional argument.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. but why is it optional for this specific function (in contrast to all the other code, where it isn't optional)?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because adding it to the whole potential call stack will be a mess 🙈
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🥇 |
||
| """ | ||
| Split values in observableParameters and noiseParameters in measurement | ||
| table. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| MODEL_TYPE_SBML = 'sbml' | ||
|
|
||
| known_model_types = {MODEL_TYPE_SBML} | ||
|
Comment on lines
+1
to
+3
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be here or the constants file?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd prefer keeping it more modular, but could consider importing it in |
||
|
|
||
| from .model import Model # noqa F401 | ||
Uh oh!
There was an error while loading. Please reload this page.