Skip to content

Commit 127492f

Browse files
committed
match preferred order
1 parent f8ba6b6 commit 127492f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

petab/v2/petab1to2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,15 @@ def create_experiment_id(sim_cond_id: str, preeq_cond_id: str) -> str:
178178
experiments.append(
179179
{
180180
v2.C.EXPERIMENT_ID: exp_id,
181-
v2.C.CONDITION_ID: preeq_cond_id,
182181
v2.C.TIME: v2.C.TIME_PREEQUILIBRATION,
182+
v2.C.CONDITION_ID: preeq_cond_id,
183183
}
184184
)
185185
experiments.append(
186186
{
187187
v2.C.EXPERIMENT_ID: exp_id,
188-
v2.C.CONDITION_ID: sim_cond_id,
189188
v2.C.TIME: 0,
189+
v2.C.CONDITION_ID: sim_cond_id,
190190
}
191191
)
192192
if experiments:

0 commit comments

Comments
 (0)