We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d0bcda commit 6690733Copy full SHA for 6690733
2 files changed
petab/v2/C.py
@@ -191,7 +191,7 @@
191
#: Cauchy distribution.
192
CAUCHY = "cauchy"
193
#: Chi-squared distribution.
194
-# TODO: "chisquare" in PEtab and sbml-distrib, but usually "chi-squared"
+# FIXME: "chisquare" in PEtab and sbml-distrib, but usually "chi-squared"
195
CHI_SQUARED = "chisquare"
196
#: Exponential distribution.
197
EXPONENTIAL = "exponential"
petab/v2/core.py
@@ -157,7 +157,7 @@ class PriorDistribution(str, Enum):
157
158
159
assert set(C.PRIOR_DISTRIBUTIONS) == {e.value for e in PriorDistribution}, (
160
- "PriorType enum does not match C.PRIOR_TYPES: "
+ "PriorDistribution enum does not match C.PRIOR_DISTRIBUTIONS "
161
f"{set(C.PRIOR_DISTRIBUTIONS)} vs { {e.value for e in PriorDistribution} }"
162
)
163
0 commit comments