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 21fd705 commit 1fc521fCopy full SHA for 1fc521f
v1_v2.py
@@ -11,6 +11,11 @@ def main():
11
v2_root = Path(__file__).resolve().parent / "v2"
12
13
for problem_id in benchmark_models_petab.MODELS:
14
+ if problem_id == "Froehlich_CellSystems2018":
15
+ # naive conversion generates huge condition table
16
+ logging.warning("Skipping Froehlich_CellSystems2018 due to performance issues.")
17
+ continue
18
+
19
convert(problem_id, output_dir=v2_root / problem_id)
20
21
def convert(problem_id: str, output_dir: Path):
0 commit comments