Skip to content

Commit

Permalink
Implementing Joseph's suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
emprzy committed Dec 4, 2024
1 parent aeb230b commit 8e80204
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flepimop/gempyor_pkg/src/gempyor/inference_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def add_modifier(self, pname, ptype, parameter_config, subpops):
pname=pname,
subpop=",".join(group),
pdist=parameter_config["value"].as_random_distribution(),
lb=float(parameter_config["value"]["a"].get()),
ub=float(parameter_config["value"]["b"].get()),
lb=parameter_config["value"]["a"].get(float),
ub=parameter_config["value"]["b"].get(float),
)

def add_single_parameter(self, ptype, pname, subpop, pdist, lb, ub):
Expand Down

0 comments on commit 8e80204

Please sign in to comment.