-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool-registry.json
More file actions
1413 lines (1413 loc) · 66.5 KB
/
Copy pathtool-registry.json
File metadata and controls
1413 lines (1413 loc) · 66.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": 1,
"registry_kind": "biosymphony_ferm_doe_tool_registry",
"generated_on": "2026-08-30",
"maintainer_note": "Curated public reference for optional tools, sidecars, and watchlist repositories. The 2026-08-30 alignment added the shipped SciPy and Plotly integrations. Refresh upstream facts before changing dependencies or making version, activity, deprecation, or archival claims.",
"refresh_policy": {
"default_refresh_days": 90,
"refresh_before": [
"adding or changing optional dependencies",
"running a live optional-tool smoke",
"claiming a package is current, active, deprecated, or archived",
"turning a watchlist or sidecar tool into an adapter"
]
},
"source_notes": [
"docs/open-source-bioprocess-tool-survey-2026-05-15.md",
"docs/BOFIRE_POSITIONING.md",
"pyproject.toml",
"docs/ENTMOOT_SWAP_DESIGN.md",
"docs/BOFIRE_CONSTRAINT_PATTERNS.md",
"src/biosymphony_ferm_doe/adapters/pubmed_mcp.py",
"docs/research/bo-tools-survey-2026-05-16.md",
"docs/research/tool-registry-refresh-2026-06-21.md"
],
"decision_rules": [
{
"rule_id": "stdlib_core_first",
"description": "Core engine remains stdlib-first; heavy scientific tools are optional adapters or sidecars."
},
{
"rule_id": "bofire_route",
"description": "Use BoFire only for non-box constraints, multi-objective optimization, multi-fidelity scale structure, or explicit operator request."
},
{
"rule_id": "license_boundary",
"description": "GPL and AGPL tools are boundary-only or avoid unless repository distribution posture is explicitly changed."
},
{
"rule_id": "no_platform_pileup",
"description": "Do not add workflow platforms that duplicate the campaign manifest and task-request contracts unless repeated computational DAGs justify another workflow language."
}
],
"tools": [
{
"tool_id": "bofire",
"name": "BoFire",
"category": "adaptive_design",
"priority": "P0",
"status": "adopted_optional",
"posture": "primary optional adaptive adapter",
"package": "bofire>=0.3.1,<0.4",
"pyproject_extra": "bofire",
"license": "BSD-3-Clause",
"links": {
"repo": "https://github.com/experimental-design/bofire",
"docs": "https://experimental-design.github.io/bofire/"
},
"docs_in_repo": [
"docs/BOFIRE_POSITIONING.md",
"docs/BOFIRE_CONSTRAINT_PATTERNS.md"
],
"last_checked": "2026-08-30",
"upstream_version": "0.5.0",
"upstream_released_on": "2026-08-11",
"current_signal": "PyPI 0.5.0 is current upstream. The primary adapter remains on bofire>=0.3.1,<0.4 because later releases require Python 3.11 or newer and carry breaking API and dependency changes. BoFire 0.4 tagged generalized NChooseK DoE support; the separate adaptive-nchoosek-doe extra pins 0.4.1 as an unverified candidate.",
"fit": "Constrained media optimization, mixed spaces, multi-objective BO, and future scale-fidelity planning.",
"risks": "Heavy Torch/BoTorch stack; pre-1.0 API; fermentation phase and feed semantics remain BioSymphony-owned. The 0.3.1 audit found failures for SoboStrategy with NChooseK and multi-fidelity strategies with non-box constraints. The related upstream issues are closed, but later tags have not been retested here; retain OMLT, ENTMOOT, and parallel-arm fallbacks.",
"route": [
"non_box_constraints",
"multi_objective_responses",
"scale_fidelity_structure",
"operator_requested_bofire"
],
"route_reasons": [
"non_box_constraints",
"multi_objective_responses",
"scale_fidelity_structure",
"operator_requested_bofire"
],
"claim_level": "bofire_adapter_planning",
"fail_closed_behavior": "Write bofire_strategy_report.json and fall back to stdlib planning when missing or untranslated.",
"local_lane": "nox -s adaptive_smoke",
"live_lane": "nox -s adaptive_live"
},
{
"tool_id": "pydoe",
"name": "pydoe",
"category": "classical_doe",
"priority": "P1",
"status": "watch",
"posture": "current lightweight DOE-family backend to evaluate against the shipped pyDOE3 adapter",
"package": "pydoe>=1.0.1",
"pyproject_extra": "",
"license": "BSD-3-Clause",
"links": {
"pypi": "https://pypi.org/project/pyDOE/",
"docs": "https://pydoe.github.io/pydoe/"
},
"last_checked": "2026-08-30",
"upstream_version": "1.5.0",
"upstream_released_on": "2026-08-20",
"current_signal": "PyPI 1.5.0 is current upstream. This repository still ships its classical-design compatibility adapter through the pydoe3 extra.",
"fit": "Plackett-Burman, factorial, RSM, and Latin-hypercube style fast paths.",
"risks": "No bioprocess constraints, adaptive posterior, or scale-bridge semantics.",
"route": [
"screening",
"rsm_fit",
"space_filling_scout"
],
"claim_level": "adapter_backed_classical_doe",
"fail_closed_behavior": "Report dependency missing and use stdlib design family where available."
},
{
"tool_id": "pydoe3",
"name": "pyDOE3",
"category": "classical_doe",
"priority": "P1",
"status": "compatibility_only",
"posture": "compatibility adapter for extended Box-Behnken and maximin LHS paths",
"package": "pyDOE3>=1.0",
"pyproject_extra": "pydoe3",
"license": "BSD-3-Clause",
"links": {
"pypi": "https://pypi.org/project/pyDOE3/",
"docs": "https://pydoe3.readthedocs.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "1.6.2",
"upstream_released_on": "2026-01-12",
"current_signal": "PyPI 1.6.2 is current upstream. The compatibility-only status describes this repository's existing adapter route, not the upstream project's maintenance status.",
"fit": "Existing pyDOE3-specific adapter for larger Box-Behnken coverage and maximin Latin-hypercube generation.",
"risks": "The adapter covers a narrow subset of pyDOE3. Evaluate current pydoe before adding new classical-design dependency surface.",
"route": [
"extended_box_behnken",
"latin_hypercube_maximin",
"legacy_pydoe3_adapter"
],
"claim_level": "compatibility_adapter",
"fail_closed_behavior": "Report pyDOE3 missing and use pydoe or stdlib design family where available."
},
{
"tool_id": "scipy",
"name": "SciPy",
"category": "statistical_analysis",
"priority": "P0",
"status": "adopted_optional",
"posture": "optional statistical and quasi-random design adapter",
"package": "scipy>=1.11",
"pyproject_extra": "scipy",
"license": "BSD-3-Clause",
"links": {
"repo": "https://github.com/scipy/scipy",
"docs": "https://docs.scipy.org/doc/scipy/"
},
"last_checked": "2026-08-30",
"upstream_version": "1.18.1",
"upstream_released_on": "2026-08-21",
"current_signal": "PyPI 1.18.1 is current upstream and requires Python 3.12 or newer. The repository retains scipy>=1.11 for its wider Python support and uses scipy.stats and scipy.stats.qmc through optional paths.",
"fit": "Small-sample p-values, power quantiles, and quasi-random space-filling designs.",
"risks": "SciPy improves statistical calculations and design generation but does not validate assay quality or campaign conclusions.",
"route": [
"analysis_pvalues",
"doe_power_quantiles",
"qmc_space_filling"
],
"claim_level": "adapter_backed_statistical_analysis",
"fail_closed_behavior": "Use stdlib distribution approximations and space-filling generators when SciPy is absent."
},
{
"tool_id": "salib",
"name": "SALib",
"category": "sensitivity",
"priority": "P0",
"status": "adopted_optional",
"posture": "optional diagnostics adapter",
"package": "SALib>=1.5.2",
"pyproject_extra": "sensitivity",
"license": "MIT",
"links": {
"repo": "https://github.com/SALib/SALib",
"docs": "https://salib.readthedocs.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "1.5.2",
"upstream_released_on": "2025-10-12",
"current_signal": "PyPI 1.5.2 remains current upstream.",
"fit": "PAWN, delta, and Sobol sensitivity analysis for factor prioritization and assumption checks.",
"risks": "Not an optimizer; precision depends on declared ranges and response models.",
"route": [
"sensitivity_screening",
"assumption_attack",
"scale_recipe_uncertainty"
],
"claim_level": "sensitivity_screening",
"fail_closed_behavior": "Skip optional sensitivity outputs and preserve the base dossier."
},
{
"tool_id": "frictionless",
"name": "Frictionless Framework",
"category": "data_contracts",
"priority": "P0",
"status": "adopted_optional",
"posture": "CSV/table schema reference; stdlib validator remains default",
"package": "frictionless>=5,<6",
"pyproject_extra": "contracts",
"license": "MIT",
"links": {
"repo": "https://github.com/frictionlessdata/frictionless-py",
"docs": "https://framework.frictionlessdata.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "5.19.0",
"upstream_released_on": "2026-04-13",
"current_signal": "PyPI 5.19.0 is current upstream. The stdlib validator remains the default runtime path.",
"fit": "CSV/table contracts for ledgers, evidence tables, result templates, inventories, and run sheets.",
"risks": "Table-shape validation is not scientific semantics.",
"route": [
"table_contracts"
],
"claim_level": "contract_validation",
"fail_closed_behavior": "Stdlib table_contracts validator remains authoritative when the package is absent."
},
{
"tool_id": "plotly",
"name": "Plotly.py",
"category": "reporting",
"priority": "P1",
"status": "adopted_optional",
"posture": "optional interactive charts for the BoFire HTML report",
"package": "plotly>=6.0",
"pyproject_extra": "report",
"license": "MIT",
"links": {
"repo": "https://github.com/plotly/plotly.py",
"docs": "https://plotly.com/python/"
},
"last_checked": "2026-08-30",
"upstream_version": "7.0.0",
"upstream_released_on": "2026-08-25",
"current_signal": "PyPI 7.0.0 is current upstream. The public reporter uses Plotly for feasibility slices, candidate cost stacks, and factor-coverage heatmaps.",
"fit": "Interactive charts in standalone BoFire HTML reports.",
"risks": "Embedded JavaScript increases report size; the tabular report remains authoritative.",
"route": [
"bofire_html_constraint_slice",
"bofire_html_cost_stack",
"bofire_html_factor_heatmap"
],
"claim_level": "optional_report_visualization",
"fail_closed_behavior": "Omit Plotly sections and preserve the stdlib tabular report when Plotly is absent."
},
{
"tool_id": "ro_crate",
"name": "RO-Crate",
"category": "provenance",
"priority": "P0",
"status": "adopted_optional",
"posture": "minimal dossier provenance envelope",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0 docs/spec materials; verify implementation package if added",
"links": {
"docs": "https://www.researchobject.org/ro-crate/",
"spec_repo": "https://github.com/ResearchObject/ro-crate",
"workflow_run_profile": "https://www.researchobject.org/workflow-run-crate/",
"rocrate_py": "https://github.com/ResearchObject/ro-crate-py",
"validator": "https://github.com/crs4/rocrate-validator"
},
"last_checked": "2026-08-30",
"upstream_version": "1.3.0 spec; 0.15.1 rocrate",
"upstream_released_on": "2026-07-10",
"current_signal": "RO-Crate 1.3.0 and rocrate 0.15.1 are current upstream references. Keep the repository's stdlib metadata writer authoritative unless a profile-aware validator is adopted and tested.",
"fit": "Dossier metadata, file inventory, hashes, source refs, license, claim boundaries, and future workflow-run provenance.",
"risks": "JSON-LD can become overbuilt; validator and package APIs add churn. Keep a minimal crate profile and treat profile-aware validation as optional.",
"route": [
"compile_dossier",
"workflow_run_provenance",
"profile_validation_candidate"
],
"claim_level": "provenance_metadata",
"fail_closed_behavior": "Dossier check fails if required ro-crate-metadata.json is missing."
},
{
"tool_id": "eln_file_format",
"name": "ELN file format (.eln)",
"category": "experiment_packet_interchange",
"priority": "P1",
"status": "evaluate_next",
"posture": "ELN/LIMS-neutral run-packet interchange candidate built on RO-Crate conventions",
"package": "",
"pyproject_extra": "",
"license": "MIT",
"links": {
"repo": "https://github.com/TheELNConsortium/TheELNFileFormat",
"iana": "https://www.iana.org/assignments/media-types/application/vnd.eln+zip",
"ro_crate_use_case": "https://www.researchobject.org/ro-crate/eln"
},
"last_checked": "2026-06-21",
"current_signal": "The public survey recorded active consortium work in April-June 2026. The format is a zip-based interchange convention for ELN exports and imports.",
"fit": "Public-safe synthetic run packets, sample tables, and dossier exports that should move across ELN/LIMS tools without encoding private tracker details.",
"risks": "Import behavior varies across ELNs and the format still carries implementation quirks; do not claim validated ELN compatibility without round-trip fixture tests.",
"route": [
"eln_export_candidate",
"run_packet_interchange",
"ro_crate_profile_reference"
],
"claim_level": "interchange_candidate",
"fail_closed_behavior": "Keep the existing run packet and table contracts authoritative when .eln export is absent or not round-trip tested."
},
{
"tool_id": "grobid_fulltext",
"name": "GROBID",
"category": "evidence_enrichment",
"priority": "P1",
"status": "evaluate_next",
"posture": "public scholarly PDF structuring sidecar for open-access evidence",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0",
"links": {
"repo": "https://github.com/grobidOrg/grobid",
"docs": "https://grobid.readthedocs.io/",
"releases": "https://github.com/grobidOrg/grobid/releases"
},
"last_checked": "2026-08-30",
"upstream_version": "0.9.1",
"upstream_released_on": "2026-08-04",
"current_signal": "GROBID 0.9.1 is the current tagged release.",
"fit": "Convert public or open-license PDFs into structured TEI/BibTeX/citation-context inputs for dossier evidence tables.",
"risks": "Java/Docker service surface; copyright boundaries are source-specific. Do not ingest paywalled or non-permitted full text into public fixtures.",
"route": [
"public_pdf_structuring",
"dossier_evidence_harvest",
"citation_context_extraction"
],
"claim_level": "evidence_extraction_sidecar",
"fail_closed_behavior": "Use PubMed fixture mode or manually curated evidence rows when GROBID is unavailable or source license is unclear."
},
{
"tool_id": "openalex_official",
"name": "OpenAlex official CLI/API",
"category": "literature_harvesting",
"priority": "P2",
"status": "watch",
"posture": "broad public literature and citation-graph context source",
"package": "",
"pyproject_extra": "",
"license": "MIT for client tooling; OpenAlex data is CC0",
"links": {
"docs": "https://developers.openalex.org/",
"pypi": "https://pypi.org/project/openalex-official/",
"paper": "https://arxiv.org/abs/2205.01833"
},
"last_checked": "2026-06-21",
"current_signal": "PyPI openalex-official 0.3.3 was released 2026-03-18; API access and free-tier limits changed in 2026.",
"fit": "Citation graph, topic, institution, and source metadata context beyond PubMed when building public literature dossiers.",
"risks": "API keys and billing/rate limits must stay outside repos and fixtures; metadata breadth does not imply source quality or full-text rights.",
"route": [
"public_literature_context",
"citation_graph_harvest"
],
"claim_level": "metadata_harvest_watch",
"fail_closed_behavior": "Skip OpenAlex enrichment and preserve fixture-backed PubMed/manual evidence rows when the API is unavailable."
},
{
"tool_id": "europe_pmc_api",
"name": "Europe PMC APIs",
"category": "evidence_enrichment",
"priority": "P2",
"status": "watch",
"posture": "public life-science literature and annotations source",
"package": "",
"pyproject_extra": "",
"license": "API/source records vary by article and endpoint",
"links": {
"developers": "https://europepmc.org/developers",
"rest": "https://europepmc.org/RestfulWebService",
"annotations": "https://europepmc.org/AnnotationsApi"
},
"last_checked": "2026-06-21",
"current_signal": "Official REST and annotations APIs remain public and cover life-science articles, preprints, patents, open full text, and text-mined annotations.",
"fit": "Complement PubMed MCP for public literature harvesting, preprint coverage, open full-text lookup, and concept evidence tables.",
"risks": "Full-text reuse depends on article license; API responses must be fixture-backed in tests and source licenses must be recorded in dossiers.",
"route": [
"public_life_science_search",
"open_fulltext_lookup",
"annotation_harvest"
],
"claim_level": "metadata_harvest_watch",
"fail_closed_behavior": "Skip Europe PMC enrichment and keep existing citation fixtures when the endpoint is unavailable or source rights are unclear."
},
{
"tool_id": "nox",
"name": "Nox",
"category": "execution_lanes",
"priority": "P0",
"status": "adopted_optional",
"posture": "repo task lane runner",
"package": "nox>=2024.4",
"pyproject_extra": "dev",
"license": "Apache-2.0",
"links": {
"repo": "https://github.com/wntrblm/nox",
"docs": "https://nox.thea.codes/"
},
"last_checked": "2026-08-30",
"upstream_version": "2026.8.17",
"upstream_released_on": "2026-08-18",
"current_signal": "PyPI 2026.8.17 is current upstream. The repository retains nox>=2024.4 as its supported development-tool floor.",
"fit": "Stable command surface for unit, table_contracts, dossier_smoke, adaptive_smoke, adaptive_live, and release checks.",
"risks": "Not an environment lock by itself.",
"route": [
"local_validation",
"optional_lanes"
],
"claim_level": "execution_lane",
"fail_closed_behavior": "Direct Python scripts remain callable without Nox."
},
{
"tool_id": "botorch",
"name": "BoTorch",
"category": "adaptive_design",
"priority": "P1",
"status": "adopted_optional",
"posture": "low-level expert backend",
"package": "botorch>=0.9",
"pyproject_extra": "botorch",
"license": "MIT",
"links": {
"repo": "https://github.com/meta-pytorch/botorch",
"docs": "https://botorch.org/"
},
"last_checked": "2026-08-30",
"upstream_version": "0.18.1",
"upstream_released_on": "2026-06-08",
"current_signal": "PyPI 0.18.1 is current upstream and requires Python 3.11 or newer. The repository keeps a broad lower bound for its narrow optional adapter and does not claim untested latest-version compatibility.",
"fit": "Custom acquisition experiments when BoFire abstractions block a needed route.",
"risks": "Too low-level for campaign-facing contracts and easy to overfit into research code.",
"route": [
"experimental_adaptive_adapter"
],
"claim_level": "experimental_adapter",
"runtime_claim_level": "bayesian_optimization_planned",
"fail_closed_behavior": "Prefer BoFire; if direct BoTorch route fails, write route report and fall back."
},
{
"tool_id": "xopt",
"name": "Xopt",
"category": "adaptive_design",
"priority": "P1",
"status": "evaluate_next",
"posture": "arbitrary scientific optimization and experiment-control comparison backend",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0",
"links": {
"repo": "https://github.com/xopt-org/Xopt",
"docs": "https://xopt.xopt.org/",
"pypi": "https://pypi.org/project/xopt/"
},
"last_checked": "2026-08-30",
"upstream_version": "3.2.1",
"upstream_released_on": "2026-07-31",
"current_signal": "PyPI 3.2.1 is current upstream. Official docs describe constrained, serial, parallel, and multi-objective Bayesian optimization plus evolutionary methods for arbitrary simulations and control systems.",
"fit": "Candidate comparison backend for constrained media fixtures, scale-bridge simulations, and arbitrary expensive objective loops when manifest boundaries are preserved.",
"risks": "Accelerator/control-systems origin; BioSymphony must own assay readiness, constraint translation, cost/scale semantics, and candidate-table validation.",
"route": [
"adaptive_backend_comparison",
"constrained_bo",
"multi_objective_bo",
"parallel_evaluation"
],
"claim_level": "not_yet_evaluated",
"fail_closed_behavior": "Do not emit Xopt candidates as authoritative designs until a fixture route report exists; fall back to BoFire, ENTMOOT, OMLT, BoTorch, or stdlib planning."
},
{
"tool_id": "trieste",
"name": "Trieste",
"category": "adaptive_design",
"priority": "P2",
"status": "watch",
"posture": "TensorFlow-based BO research toolbox and complex-acquisition comparison target",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0",
"links": {
"repo": "https://github.com/secondmind-labs/trieste",
"docs": "https://secondmind-labs.github.io/trieste/",
"pypi": "https://pypi.org/project/trieste/"
},
"last_checked": "2026-08-30",
"upstream_version": "4.6.0",
"upstream_released_on": "2026-06-17",
"current_signal": "PyPI 4.6.0 remains current upstream. Public docs describe ask-tell, batch, asynchronous, constrained, multi-fidelity, and multi-objective BO.",
"fit": "Useful landscape comparison for complex follow-up planning and acquisition-function research, especially when TensorFlow/GPflow is already present in an external evaluation lane.",
"risks": "Heavy TensorFlow/GPflow stack and no fermentation-specific semantics; not a near-term public adapter unless a fixture demonstrates a route that BoFire/BayBE/Ax do not cover.",
"route": [
"complex_acquisition_reference",
"ask_tell_bo_watch",
"multi_fidelity_bo_watch"
],
"claim_level": "watch_only",
"fail_closed_behavior": "Do not add as dependency or campaign route without an explicit evaluation report."
},
{
"tool_id": "pymoo",
"name": "pymoo",
"category": "pareto_tournament",
"priority": "P2",
"status": "evaluate_next",
"posture": "candidate-table Pareto and tournament sidecar",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0",
"links": {
"docs": "https://pymoo.org/"
},
"last_checked": "2026-08-30",
"upstream_version": "0.6.2",
"upstream_released_on": "2026-06-28",
"current_signal": "PyPI 0.6.2 is current upstream and provides constrained and mixed-variable multi-objective algorithms.",
"fit": "Posthoc Pareto sorting, hypervolume diagnostics, and design-tournament scoring.",
"risks": "Evolutionary optimizer rather than Bayesian sample-efficient planning; use for diagnostics, not as the primary refinement loop.",
"route": [
"pareto_report",
"design_tournament"
],
"claim_level": "candidate_table_diagnostic",
"fail_closed_behavior": "Keep existing stdlib tournament and emit no pymoo report when unavailable."
},
{
"tool_id": "smt",
"name": "SMT",
"category": "surrogate_modeling",
"priority": "P2",
"status": "evaluate_next",
"posture": "scale-bridge surrogate diagnostic candidate",
"package": "",
"pyproject_extra": "",
"license": "BSD-3-Clause",
"links": {
"repo": "https://github.com/SMTorg/smt",
"docs": "https://smt.readthedocs.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "2.14.1",
"upstream_released_on": "2026-06-22",
"current_signal": "PyPI 2.14.1 is current upstream.",
"fit": "Co-kriging and multi-fidelity surrogate diagnostics for plate/flask/reactor bridges.",
"risks": "Surrogate toolbox, not campaign optimizer; requires careful adapter design.",
"route": [
"scale_bridge_diagnostic"
],
"claim_level": "surrogate_diagnostic",
"fail_closed_behavior": "Keep scale_recipe and BoFire route reports; do not block dossier compilation."
},
{
"tool_id": "pyomo_dae",
"name": "Pyomo.DAE",
"category": "dynamic_feasibility",
"priority": "P1",
"status": "evaluate_next",
"posture": "advanced feed/profile feasibility sidecar",
"package": "",
"pyproject_extra": "",
"license": "BSD-style",
"links": {
"docs": "https://pyomo.readthedocs.io/en/stable/explanation/modeling/dae.html"
},
"last_checked": "2026-08-30",
"upstream_version": "Pyomo 6.10.1",
"current_signal": "Pyomo 6.10.1 is current upstream. Pyomo.DAE remains a candidate sidecar for dynamic fed-batch and feed-control feasibility models.",
"fit": "Continuous feed profile optimization, volume/substrate/oxygen constraints, and dynamic feasibility.",
"risks": "Solver stack and initialization can become site-specific and heavy.",
"route": [
"fed_batch_feasibility",
"dynamic_constraints"
],
"claim_level": "deterministic_feasibility_sidecar",
"fail_closed_behavior": "Do not run dynamic optimization; preserve static feasibility warnings."
},
{
"tool_id": "pyplate",
"name": "PyPlate",
"category": "plate_execution",
"priority": "P1",
"status": "evaluate_next",
"posture": "plate/deep-well recipe sidecar candidate",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0",
"links": {
"docs": "https://pyplate-hte.readthedocs.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "0.4.7",
"current_signal": "PyPI 0.4.7 remains the latest release; the upstream repository has newer activity. Keep as an evaluation candidate for high-throughput experiment representation.",
"fit": "Plate recipe exports, well-volume checks, reagent transforms, and liquid-handling artifacts.",
"risks": "Plate-centric; not a fermentation scale-bridge model.",
"route": [
"plate_arm_manifest",
"plate_recipe_export"
],
"claim_level": "execution_recipe_sidecar",
"fail_closed_behavior": "Emit BioSymphony plate manifest only; do not claim liquid-handler readiness."
},
{
"tool_id": "fedbatchdesigner",
"name": "FedBatchDesigner",
"category": "fed_batch_modeling",
"priority": "P1",
"status": "evaluate_next",
"posture": "reference model/example candidate",
"package": "",
"pyproject_extra": "",
"license": "MIT",
"links": {
"repo": "https://github.com/julibeg/FedBatchDesigner",
"paper": "https://pubs.acs.org/doi/abs/10.1021/acssynbio.5c00357"
},
"last_checked": "2026-08-30",
"upstream_version": "snapshot-20250711",
"current_signal": "The 2025-07-11 publication snapshot remains the latest tagged release. It provides constant and exponential feeding models, case-study notebooks, and CSV or image export.",
"fit": "Feed-volume/time stage math and growth-arrested fed-batch planning references.",
"risks": "Low adoption signal; may not cover ordinary microbial or mammalian fed-batch oxygen limits.",
"route": [
"fed_batch_reference_example"
],
"claim_level": "reference_sidecar",
"fail_closed_behavior": "Keep BioSymphony feed policy fields and skip reference comparison."
},
{
"tool_id": "biosteam",
"name": "BioSTEAM",
"category": "process_economics",
"priority": "P1",
"status": "evaluate_next",
"posture": "cost/downstream sidecar",
"package": "",
"pyproject_extra": "",
"license": "University of Illinois/NCSA Open Source License",
"links": {
"repo": "https://github.com/BioSTEAMDevelopmentGroup/biosteam",
"docs": "https://biosteam.readthedocs.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "2.53.11",
"current_signal": "PyPI 2.53.11 is current and the upstream repository remains active. BioSTEAM stays an evaluation candidate for process-economic and life-cycle sidecars, not a core DoE planner.",
"fit": "Cost/L, downstream context, feedstock/media cost projections, TEA/LCA examples.",
"risks": "Biorefinery scope can distract from upstream executability.",
"route": [
"cost_rollup_sidecar",
"downstream_context"
],
"claim_level": "economic_context_sidecar",
"fail_closed_behavior": "Use existing cost_rollup with declared assumptions."
},
{
"tool_id": "sbml_runtime_stack",
"name": "SBML runtime stack (libRoadRunner/Tellurium/AMICI)",
"category": "mechanistic_model_sidecar",
"priority": "P1",
"status": "evaluate_next",
"posture": "model import/export sidecar",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0/BSD-3-Clause mix; verify per runtime",
"links": {
"roadrunner": "https://github.com/sys-bio/roadrunner",
"tellurium": "https://github.com/sys-bio/tellurium",
"amici": "https://pypi.org/project/amici/"
},
"last_checked": "2026-08-30",
"upstream_version": "libRoadRunner 2.10.0; Tellurium 2.2.11.2; AMICI 1.0.1",
"current_signal": "Current tagged components are libRoadRunner 2.10.0, Tellurium 2.2.11.2, and AMICI 1.0.1. Keep this stack as a mechanistic-model and parameter-estimation sidecar candidate.",
"fit": "Growth/substrate/product kinetics, parameter tables, event/feed schedules, and model provenance.",
"risks": "Public SBML models rarely encode full vessel/feed/oxygen-transfer semantics.",
"route": [
"mechanistic_model_sidecar"
],
"claim_level": "simulation_sidecar",
"fail_closed_behavior": "Record model as external evidence and skip runtime execution."
},
{
"tool_id": "petab_libpetab",
"name": "PEtab / libpetab-python",
"category": "model_calibration_contracts",
"priority": "P1",
"status": "evaluate_next",
"posture": "parameter-estimation table contract candidate for mechanistic sidecars",
"package": "",
"pyproject_extra": "",
"license": "MIT",
"links": {
"repo": "https://github.com/PEtab-dev/libpetab-python",
"docs": "https://petab.readthedocs.io/",
"pypi": "https://pypi.org/project/petab/"
},
"last_checked": "2026-08-30",
"upstream_version": "0.8.2",
"upstream_released_on": "2026-03-12",
"current_signal": "PyPI 0.8.2 remains current upstream. The package reads, writes, and validates PEtab files and installs the petablint validator.",
"fit": "Portable public calibration fixtures around SBML/ODE models before pyPESTO, AMICI, or RoadRunner-side evaluation.",
"risks": "Systems-biology parameter-estimation semantics are not fermentation manifest semantics; keep response, factor, assay, cost, and scale contracts BioSymphony-owned.",
"route": [
"mechanistic_model_contract",
"parameter_estimation_fixture",
"petab_validation"
],
"claim_level": "calibration_contract_candidate",
"fail_closed_behavior": "Skip PEtab export/import and keep the campaign manifest plus table contracts authoritative when no validated PEtab fixture exists."
},
{
"tool_id": "pypesto",
"name": "pyPESTO",
"category": "mechanistic_model_sidecar",
"priority": "P1",
"status": "evaluate_next",
"posture": "parameter-estimation and uncertainty sidecar for public mechanistic models",
"package": "",
"pyproject_extra": "",
"license": "BSD-3-Clause",
"links": {
"repo": "https://github.com/ICB-DCM/pyPESTO",
"docs": "https://pypesto.readthedocs.io/",
"pypi": "https://pypi.org/project/pypesto/",
"paper": "https://doi.org/10.1093/bioinformatics/btad711"
},
"last_checked": "2026-08-30",
"upstream_version": "0.6.0",
"upstream_released_on": "2026-03-19",
"current_signal": "PyPI 0.6.0 remains current upstream. Official docs describe multi-start and global optimization, simulator interfaces, PEtab/SBML pipelines, and uncertainty quantification.",
"fit": "Candidate calibration sidecar for public or synthetic kinetic and cell-culture models, with uncertainty reports that can feed evidence and assumption checks.",
"risks": "Heavy optional stack and calibration outputs can look more authoritative than the available data supports; never bypass readiness, assay-power, scale, or claim-boundary checks.",
"route": [
"mechanistic_parameter_estimation",
"uncertainty_quantification_sidecar",
"petab_sbml_pipeline"
],
"claim_level": "calibration_sidecar_candidate",
"fail_closed_behavior": "Treat pyPESTO results as external evidence rows unless an in-repo fixture validates the full route; skip calibration when dependencies or model contracts are absent."
},
{
"tool_id": "pseudobatch",
"name": "Pseudobatch",
"category": "fed_batch_data_transform",
"priority": "P1",
"status": "evaluate_next",
"posture": "fed-batch sample-withdrawal correction reference and preprocessing candidate",
"package": "",
"pyproject_extra": "",
"license": "MIT",
"links": {
"repo": "https://github.com/biosustain/pseudobatch",
"docs": "https://biosustain.github.io/pseudobatch/",
"pypi": "https://pypi.org/project/pseudobatch/",
"preprint": "https://doi.org/10.1101/2024.05.27.596043"
},
"last_checked": "2026-06-21",
"current_signal": "PyPI pseudobatch 1.0.1 released 2025-01-10; README and package page describe transformations for fed-batch data where samples are withdrawn during cultivation.",
"fit": "Preprocessing note for public fed-batch ledgers before growth-rate, biomass, or response modeling when sample withdrawal creates mass-balance artifacts.",
"risks": "Specific correction method, not a general fermentation simulator or scale-transfer model; error-propagation extra brings CmdStan complexity.",
"route": [
"fed_batch_sample_withdrawal",
"ledger_preprocessing",
"growth_rate_transform_reference"
],
"claim_level": "preprocessing_candidate",
"fail_closed_behavior": "Leave raw and corrected values explicit in evidence tables; skip transformation when volume/sample metadata are missing."
},
{
"tool_id": "pixi",
"name": "Pixi",
"category": "dependency_lanes",
"priority": "P1",
"status": "watch",
"posture": "future multi-environment lock/task candidate",
"package": "",
"pyproject_extra": "",
"license": "BSD-3-Clause",
"links": {
"repo": "https://github.com/prefix-dev/pixi"
},
"last_checked": "2026-08-30",
"upstream_version": "0.78.0",
"current_signal": "Pixi 0.78.0 is current upstream. It remains a watch item for reproducible optional dependency lanes if the current venv and Nox approach becomes insufficient.",
"fit": "Named environments for stdlib, contracts, adaptive, release, and optional-tool smoke profiles.",
"risks": "Adds another environment manager.",
"route": [
"dependency_locking"
],
"claim_level": "developer_tooling",
"fail_closed_behavior": "Continue using direct Python scripts and Nox."
},
{
"tool_id": "cwl",
"name": "Common Workflow Language / cwltool provenance",
"category": "portable_handoff",
"priority": "P1",
"status": "watch",
"posture": "portable workflow handoff candidate",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0",
"links": {
"docs": "https://www.commonwl.org/",
"provenance": "https://cwltool.readthedocs.io/en/latest/CWLProv.html"
},
"last_checked": "2026-08-30",
"upstream_version": "cwltool 3.2.20260720092025",
"current_signal": "CWL and CWLProv remain active; cwltool 3.2.20260720092025 is current. Keep as a watch item for portable declared inputs, outputs, and workflow provenance.",
"fit": "Narrow remote execution bundles with explicit command provenance.",
"risks": "Verbose for simple scripts and unnecessary while the manifest and task-request contracts remain sufficient.",
"route": [
"portable_handoff_bundle"
],
"claim_level": "workflow_provenance_sidecar",
"fail_closed_behavior": "Use Nox plus the explicit JSON handoff contracts."
},
{
"tool_id": "dwsim",
"name": "DWSIM",
"category": "external_flowsheet",
"priority": "P2",
"status": "boundary_only",
"posture": "external export/import only",
"package": "",
"pyproject_extra": "",
"license": "GPL-3.0",
"links": {
"site": "https://dwsim.org/",
"repo": "https://github.com/DanWBR/dwsim"
},
"last_checked": "2026-08-30",
"upstream_version": "9.0.5",
"current_signal": "DWSIM 9.0.5 is the latest tagged release. The linked GitHub repository is archived; GPL licensing and the heavy runtime keep it boundary-only.",
"fit": "Downstream, biorefinery, and process-economics reference simulations.",
"risks": "GPL embedding risk and GUI/heavy runtime.",
"route": [
"external_flowsheet_export"
],
"claim_level": "external_reference",
"fail_closed_behavior": "Do not import as dependency; export assumptions only."
},
{
"tool_id": "cadet",
"name": "CADET",
"category": "downstream_modeling",
"priority": "P2",
"status": "boundary_only",
"posture": "external downstream sidecar only",
"package": "",
"pyproject_extra": "",
"license": "GPL-3.0",
"links": {
"repo": "https://github.com/cadet"
},
"last_checked": "2026-08-30",
"upstream_version": "CADET-Core 5.1.1",
"current_signal": "CADET-Core 5.1.1 is current upstream. CADET remains relevant to downstream unit-operation modeling and outside the core upstream DoE planner.",
"fit": "Chromatography/filtration sidecars when dossiers grow downstream.",
"risks": "GPL embedding risk and uncertain upstream fermentation fit.",
"route": [
"downstream_external_sidecar"
],
"claim_level": "external_reference",
"fail_closed_behavior": "Keep downstream assumptions as evidence rows."
},
{
"tool_id": "cobrapy",
"name": "COBRApy",
"category": "metabolic_evidence",
"priority": "P2",
"status": "boundary_only",
"posture": "evidence sidecar only",
"package": "",
"pyproject_extra": "",
"license": "GPL-2.0",
"links": {
"repo": "https://github.com/opencobra/cobrapy",
"docs": "https://cobrapy.readthedocs.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "0.32.1",
"current_signal": "COBRApy 0.32.1 is current upstream. Keep it boundary-only unless public metabolic-model priors enter the evidence layer.",
"fit": "Substrate/product feasibility priors and yield-bound sanity checks.",
"risks": "GEM predictions are not process readiness; GPL and model-license variance.",
"route": [
"metabolic_evidence_sidecar"
],
"claim_level": "evidence_sidecar",
"fail_closed_behavior": "Represent model conclusions as reviewed evidence rows only."
},
{
"tool_id": "snakemake",
"name": "Snakemake",
"category": "workflow_platform",
"priority": "P2",
"status": "watch",
"posture": "defer unless repeated computational DAGs dominate",
"package": "",
"pyproject_extra": "",
"license": "MIT",
"links": {
"docs": "https://snakemake.github.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "9.26.1",
"current_signal": "Snakemake 9.26.1 is current upstream. It remains a capable workflow engine that is not needed for the repository's current contract and dossier flow.",
"fit": "Benchmark sweeps or repeated simulation campaigns.",
"risks": "Another DSL and execution model competing with existing orchestration.",
"route": [
"batch_benchmark_dag"
],
"claim_level": "workflow_sidecar",
"fail_closed_behavior": "Keep the manifest, task-request, and Nox lanes."
},
{
"tool_id": "nextflow",
"name": "Nextflow",
"category": "workflow_platform",
"priority": "P2",
"status": "watch",
"posture": "defer unless large cloud/HPC workflows appear",
"package": "",
"pyproject_extra": "",
"license": "Apache-2.0",
"links": {
"docs": "https://www.nextflow.io/"
},
"last_checked": "2026-08-30",
"upstream_version": "26.04.6",
"current_signal": "Nextflow 26.04.6 is the latest tagged release. Keep it as a watch item for larger containerized pipelines rather than adding a second workflow language now.",
"fit": "Large computational analysis pipelines.",
"risks": "Groovy DSL and cloud-pipeline posture do not align with current Python/stdlib repo shape.",
"route": [
"large_compute_pipeline"
],
"claim_level": "workflow_sidecar",
"fail_closed_behavior": "Keep the manifest, task-request, and Nox lanes."
},
{
"tool_id": "scikit_optimize",
"name": "scikit-optimize",
"category": "avoid",
"priority": "Avoid",
"status": "avoid",
"posture": "do not add",
"package": "",
"pyproject_extra": "",
"license": "BSD-3-Clause",
"links": {
"repo": "https://github.com/scikit-optimize/scikit-optimize"
},
"last_checked": "2026-08-30",
"upstream_version": "0.10.2",
"current_signal": "PyPI 0.10.2 remains the latest release and the original repository remains archived. Use the separately tracked ProcessOptimizer continuation for any new evaluation.",
"fit": "None for new integration.",
"risks": "Stale dependency and limited fit for constrained multi-objective scale-bridge work.",
"route": [],
"claim_level": "not_applicable",
"fail_closed_behavior": "Do not integrate; keep any legacy references as historical only."
},
{
"tool_id": "pysamoo",
"name": "pysamoo",
"category": "avoid",
"priority": "Avoid",
"status": "avoid",
"posture": "do not add without explicit license decision",
"package": "",
"pyproject_extra": "",
"license": "AGPL",
"links": {
"repo": "https://github.com/anyoptimization/pysamoo"
},
"last_checked": "2026-08-30",
"upstream_version": "0.1.2",
"current_signal": "PyPI 0.1.2 remains current while the repository has newer activity. The AGPL license keeps this surrogate-assisted multi-objective tool outside the adopted adapter set.",
"fit": "None for current repo.",
"risks": "AGPL distribution obligations.",
"route": [],
"claim_level": "not_applicable",
"fail_closed_behavior": "Do not integrate."
},
{
"tool_id": "entmoot",
"name": "ENTMOOT v2",
"category": "adaptive_design",
"priority": "P1",
"status": "adopted_optional",
"posture": "in-repo adapter wraps ENTMOOT v2; min_count, min-active coupling, tie-cycle handling, and HiGHS fallback are adapter-enforced",
"package": "entmoot==2.1.1",
"pyproject_extra": "entmoot",
"license": "BSD-3-Clause",
"links": {
"repo": "https://github.com/cog-imperial/entmoot",
"design_doc": "https://github.com/cog-imperial/entmoot"
},
"docs_in_repo": [
"docs/ENTMOOT_SWAP_DESIGN.md",