-
Notifications
You must be signed in to change notification settings - Fork 7
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
Functions for adding conditions/observables/parameter to Problem #328
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -3,8 +3,9 @@ | |||||||||||||||||||||||||
|
||||||||||||||||||||||||||
import os | ||||||||||||||||||||||||||
import tempfile | ||||||||||||||||||||||||||
from collections.abc import Iterable | ||||||||||||||||||||||||||
from collections.abc import Iterable, Sequence | ||||||||||||||||||||||||||
from math import nan | ||||||||||||||||||||||||||
from numbers import Number | ||||||||||||||||||||||||||
from pathlib import Path, PurePosixPath | ||||||||||||||||||||||||||
from typing import TYPE_CHECKING | ||||||||||||||||||||||||||
from warnings import warn | ||||||||||||||||||||||||||
|
@@ -1005,3 +1006,181 @@ def n_priors(self) -> int: | |||||||||||||||||||||||||
return 0 | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
return self.parameter_df[OBJECTIVE_PRIOR_PARAMETERS].notna().sum() | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def add_condition(self, id_: str, name: str = None, **kwargs): | ||||||||||||||||||||||||||
"""Add a simulation condition to the problem. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Arguments: | ||||||||||||||||||||||||||
id_: The condition id | ||||||||||||||||||||||||||
name: The condition name | ||||||||||||||||||||||||||
kwargs: Parameter, value pairs to add to the condition table. | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
record = {CONDITION_ID: [id_], **kwargs} | ||||||||||||||||||||||||||
if name is not None: | ||||||||||||||||||||||||||
record[CONDITION_NAME] = name | ||||||||||||||||||||||||||
tmp_df = pd.DataFrame(record).set_index([CONDITION_ID]) | ||||||||||||||||||||||||||
self.condition_df = ( | ||||||||||||||||||||||||||
pd.concat([self.condition_df, tmp_df]) | ||||||||||||||||||||||||||
if self.condition_df is not None | ||||||||||||||||||||||||||
else tmp_df | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def add_observable( | ||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||
id_: str, | ||||||||||||||||||||||||||
formula: str | float | int, | ||||||||||||||||||||||||||
noise_formula: str | float | int = None, | ||||||||||||||||||||||||||
noise_distribution: str = None, | ||||||||||||||||||||||||||
transform: str = None, | ||||||||||||||||||||||||||
name: str = None, | ||||||||||||||||||||||||||
Comment on lines
+1030
to
+1035
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. As above
Suggested change
|
||||||||||||||||||||||||||
**kwargs, | ||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||
"""Add an observable to the problem. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Arguments: | ||||||||||||||||||||||||||
id_: The observable id | ||||||||||||||||||||||||||
formula: The observable formula | ||||||||||||||||||||||||||
noise_formula: The noise formula | ||||||||||||||||||||||||||
noise_distribution: The noise distribution | ||||||||||||||||||||||||||
transform: The observable transformation | ||||||||||||||||||||||||||
name: The observable name | ||||||||||||||||||||||||||
kwargs: additional columns/values to add to the observable table | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
record = { | ||||||||||||||||||||||||||
OBSERVABLE_ID: [id_], | ||||||||||||||||||||||||||
OBSERVABLE_FORMULA: [formula], | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
if name is not None: | ||||||||||||||||||||||||||
record[OBSERVABLE_NAME] = [name] | ||||||||||||||||||||||||||
if noise_formula is not None: | ||||||||||||||||||||||||||
record[NOISE_FORMULA] = [noise_formula] | ||||||||||||||||||||||||||
if noise_distribution is not None: | ||||||||||||||||||||||||||
record[NOISE_DISTRIBUTION] = [noise_distribution] | ||||||||||||||||||||||||||
if transform is not None: | ||||||||||||||||||||||||||
record[OBSERVABLE_TRANSFORMATION] = [transform] | ||||||||||||||||||||||||||
record.update(kwargs) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
tmp_df = pd.DataFrame(record).set_index([OBSERVABLE_ID]) | ||||||||||||||||||||||||||
self.observable_df = ( | ||||||||||||||||||||||||||
pd.concat([self.observable_df, tmp_df]) | ||||||||||||||||||||||||||
if self.observable_df is not None | ||||||||||||||||||||||||||
else tmp_df | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def add_parameter( | ||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||
id_: str, | ||||||||||||||||||||||||||
estimated: bool | str | int = True, | ||||||||||||||||||||||||||
nominal_value=None, | ||||||||||||||||||||||||||
scale: str = None, | ||||||||||||||||||||||||||
lb: Number = None, | ||||||||||||||||||||||||||
ub: Number = None, | ||||||||||||||||||||||||||
init_prior_type: str = None, | ||||||||||||||||||||||||||
init_prior_pars: str | Sequence = None, | ||||||||||||||||||||||||||
obj_prior_type: str = None, | ||||||||||||||||||||||||||
obj_prior_pars: str | Sequence = None, | ||||||||||||||||||||||||||
**kwargs, | ||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||
"""Add a parameter to the problem. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Arguments: | ||||||||||||||||||||||||||
id_: The parameter id | ||||||||||||||||||||||||||
estimated: Whether the parameter is estimated | ||||||||||||||||||||||||||
nominal_value: The nominal value of the parameter | ||||||||||||||||||||||||||
scale: The parameter scale | ||||||||||||||||||||||||||
lb: The lower bound of the parameter | ||||||||||||||||||||||||||
ub: The upper bound of the parameter | ||||||||||||||||||||||||||
init_prior_type: The type of the initialization prior distribution | ||||||||||||||||||||||||||
init_prior_pars: The parameters of the initialization prior | ||||||||||||||||||||||||||
distribution | ||||||||||||||||||||||||||
obj_prior_type: The type of the objective prior distribution | ||||||||||||||||||||||||||
obj_prior_pars: The parameters of the objective prior distribution | ||||||||||||||||||||||||||
kwargs: additional columns/values to add to the parameter table | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
record = { | ||||||||||||||||||||||||||
PARAMETER_ID: [id_], | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
if estimated is not None: | ||||||||||||||||||||||||||
record[ESTIMATE] = [ | ||||||||||||||||||||||||||
int(estimated) | ||||||||||||||||||||||||||
if isinstance(estimated, bool | int) | ||||||||||||||||||||||||||
else estimated | ||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||
if nominal_value is not None: | ||||||||||||||||||||||||||
record[NOMINAL_VALUE] = [nominal_value] | ||||||||||||||||||||||||||
if scale is not None: | ||||||||||||||||||||||||||
record[PARAMETER_SCALE] = [scale] | ||||||||||||||||||||||||||
if lb is not None: | ||||||||||||||||||||||||||
record[LOWER_BOUND] = [lb] | ||||||||||||||||||||||||||
if ub is not None: | ||||||||||||||||||||||||||
record[UPPER_BOUND] = [ub] | ||||||||||||||||||||||||||
if init_prior_type is not None: | ||||||||||||||||||||||||||
record[INITIALIZATION_PRIOR_TYPE] = [init_prior_type] | ||||||||||||||||||||||||||
if init_prior_pars is not None: | ||||||||||||||||||||||||||
if not isinstance(init_prior_pars, str): | ||||||||||||||||||||||||||
init_prior_pars = PARAMETER_SEPARATOR.join( | ||||||||||||||||||||||||||
map(str, init_prior_pars) | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
record[INITIALIZATION_PRIOR_PARAMETERS] = [init_prior_pars] | ||||||||||||||||||||||||||
if obj_prior_type is not None: | ||||||||||||||||||||||||||
record[OBJECTIVE_PRIOR_TYPE] = [obj_prior_type] | ||||||||||||||||||||||||||
if obj_prior_pars is not None: | ||||||||||||||||||||||||||
if not isinstance(obj_prior_pars, str): | ||||||||||||||||||||||||||
obj_prior_pars = PARAMETER_SEPARATOR.join( | ||||||||||||||||||||||||||
map(str, obj_prior_pars) | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
record[OBJECTIVE_PRIOR_PARAMETERS] = [obj_prior_pars] | ||||||||||||||||||||||||||
record.update(kwargs) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
tmp_df = pd.DataFrame(record).set_index([PARAMETER_ID]) | ||||||||||||||||||||||||||
self.parameter_df = ( | ||||||||||||||||||||||||||
pd.concat([self.parameter_df, tmp_df]) | ||||||||||||||||||||||||||
if self.parameter_df is not None | ||||||||||||||||||||||||||
else tmp_df | ||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
def add_measurement( | ||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||
obs_id: str, | ||||||||||||||||||||||||||
sim_cond_id: str, | ||||||||||||||||||||||||||
time: float, | ||||||||||||||||||||||||||
measurement: float, | ||||||||||||||||||||||||||
observable_parameters: Sequence[str] = None, | ||||||||||||||||||||||||||
noise_parameters: Sequence[str] = None, | ||||||||||||||||||||||||||
preeq_cond_id: str = None, | ||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||
"""Add a measurement to the problem. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Arguments: | ||||||||||||||||||||||||||
obs_id: The observable ID | ||||||||||||||||||||||||||
sim_cond_id: The simulation condition ID | ||||||||||||||||||||||||||
time: The measurement time | ||||||||||||||||||||||||||
measurement: The measurement value | ||||||||||||||||||||||||||
observable_parameters: The observable parameters | ||||||||||||||||||||||||||
noise_parameters: The noise parameters | ||||||||||||||||||||||||||
preeq_cond_id: The pre-equilibration condition ID | ||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||
record = { | ||||||||||||||||||||||||||
OBSERVABLE_ID: [obs_id], | ||||||||||||||||||||||||||
SIMULATION_CONDITION_ID: [sim_cond_id], | ||||||||||||||||||||||||||
TIME: [time], | ||||||||||||||||||||||||||
MEASUREMENT: [measurement], | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
if observable_parameters is not None: | ||||||||||||||||||||||||||
record[OBSERVABLE_PARAMETERS] = [ | ||||||||||||||||||||||||||
PARAMETER_SEPARATOR.join(observable_parameters) | ||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||
if noise_parameters is not None: | ||||||||||||||||||||||||||
record[NOISE_PARAMETERS] = [ | ||||||||||||||||||||||||||
PARAMETER_SEPARATOR.join(noise_parameters) | ||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||
if preeq_cond_id is not None: | ||||||||||||||||||||||||||
record[PREEQUILIBRATION_CONDITION_ID] = [preeq_cond_id] | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
tmp_df = pd.DataFrame(record) | ||||||||||||||||||||||||||
self.measurement_df = ( | ||||||||||||||||||||||||||
pd.concat([self.measurement_df, tmp_df]) | ||||||||||||||||||||||||||
if self.measurement_df is not None | ||||||||||||||||||||||||||
else tmp_df | ||||||||||||||||||||||||||
) |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To match column headers/
C.py
? Not exactly the same due to underscores... but we could decide whether to go for consistent or context-specific IDs everywhere.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alternative: change all of these
add_*
methods to take**kwargs
that are used to create apd.Series
, which is then validated and concatenated.get_*_df
can be used to set the index. Then no table-specific code, and no need to redefine column names here?if not isinstance(kwarg, str) and isinstance(kwarg, list): kwarg = PARAMETER_SEPARATOR.join(map(str, kwarg))
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I was struggling with what would be preferable. In
add_condition
, it feels redundant to prefix everything withcondition_
. Then again, it might be considered confusing if the arguments don't match the table columns. For me, the former felt more important. Also with regards to potentially introducing a proper object model, I think we'd want things to be more pythonic and less petaby.I don't think the kwargs-solution would be very convenient. That would mean, you'd have write
add_observable(**{petab.OBSERVABLE_ID:"foo", petab.SIMULATION_CONDITION_ID: "bar"})
, I think then I rather directly go back to constructing dataframes.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll leave it as is for. As discussed elsewhere, the v2 API is likely to change drastically overall where these points will be addressed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, fine for v1, we can revisit v2 in case we change the column names there