We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a2de3b commit 9047f2bCopy full SHA for 9047f2b
petab/lint.py
@@ -466,7 +466,7 @@ def check_parameter_bounds(parameter_df: pd.DataFrame) -> None:
466
raise AssertionError(
467
f"{LOWER_BOUND} greater than {UPPER_BOUND} for "
468
f"{PARAMETER_ID} {row.name}.")
469
- if (row[LOWER_BOUND] <= 0.0 or row[UPPER_BOUND] < 0.0) \
+ if (row[LOWER_BOUND] < 0.0 or row[UPPER_BOUND] < 0.0) \
470
and row[PARAMETER_SCALE] in [LOG, LOG10]:
471
472
f"Bounds for {row[PARAMETER_SCALE]} scaled parameter "
0 commit comments