Skip to content

Commit 6792a29

Browse files
committed
..
1 parent ef82f14 commit 6792a29

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

petab/v2/core.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,11 @@ class ObservableTransformation(str, Enum):
4848
Observable transformations as used in the PEtab observables table.
4949
"""
5050

51+
#: No transformation
5152
LIN = C.LIN
53+
#: Logarithmic transformation (natural logarithm)
5254
LOG = C.LOG
55+
#: Logarithmic transformation (base 10)
5356
LOG10 = C.LOG10
5457

5558

@@ -70,7 +73,9 @@ class NoiseDistribution(str, Enum):
7073
Noise distributions as used in the PEtab observables table.
7174
"""
7275

76+
#: Normal distribution
7377
NORMAL = C.NORMAL
78+
#: Laplace distribution
7479
LAPLACE = C.LAPLACE
7580

7681

@@ -80,10 +85,15 @@ class PriorType(str, Enum):
8085
Prior types as used in the PEtab parameters table.
8186
"""
8287

88+
#: Normal distribution
8389
NORMAL = C.NORMAL
90+
#: Laplace distribution
8491
LAPLACE = C.LAPLACE
92+
#: Uniform distribution
8593
UNIFORM = C.UNIFORM
94+
#: Log-normal distribution
8695
LOG_NORMAL = C.LOG_NORMAL
96+
#: Log-Laplace distribution
8797
LOG_LAPLACE = C.LOG_LAPLACE
8898
PARAMETER_SCALE_NORMAL = C.PARAMETER_SCALE_NORMAL
8999
PARAMETER_SCALE_LAPLACE = C.PARAMETER_SCALE_LAPLACE

0 commit comments

Comments
 (0)