celltype-cli 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. celltype_cli-0.1.0.dist-info/METADATA +267 -0
  2. celltype_cli-0.1.0.dist-info/RECORD +89 -0
  3. celltype_cli-0.1.0.dist-info/WHEEL +4 -0
  4. celltype_cli-0.1.0.dist-info/entry_points.txt +2 -0
  5. celltype_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
  6. ct/__init__.py +3 -0
  7. ct/agent/__init__.py +0 -0
  8. ct/agent/case_studies.py +426 -0
  9. ct/agent/config.py +523 -0
  10. ct/agent/doctor.py +544 -0
  11. ct/agent/knowledge.py +523 -0
  12. ct/agent/loop.py +99 -0
  13. ct/agent/mcp_server.py +478 -0
  14. ct/agent/orchestrator.py +733 -0
  15. ct/agent/runner.py +656 -0
  16. ct/agent/sandbox.py +481 -0
  17. ct/agent/session.py +145 -0
  18. ct/agent/system_prompt.py +186 -0
  19. ct/agent/trace_store.py +228 -0
  20. ct/agent/trajectory.py +169 -0
  21. ct/agent/types.py +182 -0
  22. ct/agent/workflows.py +462 -0
  23. ct/api/__init__.py +1 -0
  24. ct/api/app.py +211 -0
  25. ct/api/config.py +120 -0
  26. ct/api/engine.py +124 -0
  27. ct/cli.py +1448 -0
  28. ct/data/__init__.py +0 -0
  29. ct/data/compute_providers.json +59 -0
  30. ct/data/cro_database.json +395 -0
  31. ct/data/downloader.py +238 -0
  32. ct/data/loaders.py +252 -0
  33. ct/kb/__init__.py +5 -0
  34. ct/kb/benchmarks.py +147 -0
  35. ct/kb/governance.py +106 -0
  36. ct/kb/ingest.py +415 -0
  37. ct/kb/reasoning.py +129 -0
  38. ct/kb/schema_monitor.py +162 -0
  39. ct/kb/substrate.py +387 -0
  40. ct/models/__init__.py +0 -0
  41. ct/models/llm.py +370 -0
  42. ct/tools/__init__.py +195 -0
  43. ct/tools/_compound_resolver.py +297 -0
  44. ct/tools/biomarker.py +368 -0
  45. ct/tools/cellxgene.py +282 -0
  46. ct/tools/chemistry.py +1371 -0
  47. ct/tools/claude.py +390 -0
  48. ct/tools/clinical.py +1153 -0
  49. ct/tools/clue.py +249 -0
  50. ct/tools/code.py +1069 -0
  51. ct/tools/combination.py +397 -0
  52. ct/tools/compute.py +402 -0
  53. ct/tools/cro.py +413 -0
  54. ct/tools/data_api.py +2114 -0
  55. ct/tools/design.py +295 -0
  56. ct/tools/dna.py +575 -0
  57. ct/tools/experiment.py +604 -0
  58. ct/tools/expression.py +655 -0
  59. ct/tools/files.py +957 -0
  60. ct/tools/genomics.py +1387 -0
  61. ct/tools/http_client.py +146 -0
  62. ct/tools/imaging.py +319 -0
  63. ct/tools/intel.py +223 -0
  64. ct/tools/literature.py +743 -0
  65. ct/tools/network.py +422 -0
  66. ct/tools/notification.py +111 -0
  67. ct/tools/omics.py +3330 -0
  68. ct/tools/ops.py +1230 -0
  69. ct/tools/parity.py +649 -0
  70. ct/tools/pk.py +245 -0
  71. ct/tools/protein.py +678 -0
  72. ct/tools/regulatory.py +643 -0
  73. ct/tools/remote_data.py +179 -0
  74. ct/tools/report.py +181 -0
  75. ct/tools/repurposing.py +376 -0
  76. ct/tools/safety.py +1280 -0
  77. ct/tools/shell.py +178 -0
  78. ct/tools/singlecell.py +533 -0
  79. ct/tools/statistics.py +552 -0
  80. ct/tools/structure.py +882 -0
  81. ct/tools/target.py +901 -0
  82. ct/tools/translational.py +123 -0
  83. ct/tools/viability.py +218 -0
  84. ct/ui/__init__.py +0 -0
  85. ct/ui/markdown.py +31 -0
  86. ct/ui/status.py +258 -0
  87. ct/ui/suggestions.py +567 -0
  88. ct/ui/terminal.py +1456 -0
  89. ct/ui/traces.py +112 -0
ct/data/__init__.py ADDED
File without changes
@@ -0,0 +1,59 @@
1
+ {
2
+ "providers": [
3
+ {
4
+ "id": "lambda",
5
+ "name": "Lambda Labs",
6
+ "website": "https://lambdalabs.com",
7
+ "api_base_url": "https://cloud.lambdalabs.com/api/v1",
8
+ "gpu_types": [
9
+ {"id": "A100_80GB", "name": "NVIDIA A100 80GB", "vram_gb": 80, "price_per_hour": 1.29},
10
+ {"id": "H100_80GB", "name": "NVIDIA H100 80GB", "vram_gb": 80, "price_per_hour": 2.49},
11
+ {"id": "A10_24GB", "name": "NVIDIA A10 24GB", "vram_gb": 24, "price_per_hour": 0.75}
12
+ ]
13
+ },
14
+ {
15
+ "id": "runpod",
16
+ "name": "RunPod",
17
+ "website": "https://runpod.io",
18
+ "api_base_url": "https://api.runpod.ai/v2",
19
+ "gpu_types": [
20
+ {"id": "A100_80GB", "name": "NVIDIA A100 80GB", "vram_gb": 80, "price_per_hour": 1.19},
21
+ {"id": "H100_80GB", "name": "NVIDIA H100 80GB", "vram_gb": 80, "price_per_hour": 2.39},
22
+ {"id": "A6000_48GB", "name": "NVIDIA A6000 48GB", "vram_gb": 48, "price_per_hour": 0.79},
23
+ {"id": "RTX4090_24GB", "name": "NVIDIA RTX 4090 24GB", "vram_gb": 24, "price_per_hour": 0.44}
24
+ ]
25
+ }
26
+ ],
27
+ "job_templates": {
28
+ "boltz2": {
29
+ "description": "Boltz-2 protein structure prediction",
30
+ "gpu_requirement_vram_gb": 40,
31
+ "estimated_time_per_sample_minutes": 15,
32
+ "recommended_gpu": "A100_80GB"
33
+ },
34
+ "alphafold": {
35
+ "description": "AlphaFold protein structure prediction",
36
+ "gpu_requirement_vram_gb": 40,
37
+ "estimated_time_per_sample_minutes": 30,
38
+ "recommended_gpu": "A100_80GB"
39
+ },
40
+ "molecular_dynamics": {
41
+ "description": "Molecular dynamics simulation",
42
+ "gpu_requirement_vram_gb": 24,
43
+ "estimated_time_per_sample_minutes": 120,
44
+ "recommended_gpu": "A6000_48GB"
45
+ },
46
+ "virtual_screening": {
47
+ "description": "Virtual screening / docking campaign",
48
+ "gpu_requirement_vram_gb": 24,
49
+ "estimated_time_per_sample_minutes": 5,
50
+ "recommended_gpu": "A10_24GB"
51
+ },
52
+ "model_training": {
53
+ "description": "ML model training (fine-tuning, QSAR, etc.)",
54
+ "gpu_requirement_vram_gb": 40,
55
+ "estimated_time_per_sample_minutes": 60,
56
+ "recommended_gpu": "A100_80GB"
57
+ }
58
+ }
59
+ }
@@ -0,0 +1,395 @@
1
+ [
2
+ {
3
+ "id": "charles-river",
4
+ "name": "Charles River Laboratories",
5
+ "website": "https://www.criver.com",
6
+ "contact_email": "info@criver.com",
7
+ "headquarters": "Wilmington, MA, USA",
8
+ "services": [
9
+ {"category": "cell_based_assay", "turnaround_days": 21, "price_range": "$10K-$40K"},
10
+ {"category": "in_vivo_efficacy", "turnaround_days": 60, "price_range": "$50K-$200K"},
11
+ {"category": "toxicology", "turnaround_days": 90, "price_range": "$100K-$500K"},
12
+ {"category": "ADME_DMPK", "turnaround_days": 14, "price_range": "$5K-$20K"},
13
+ {"category": "bioanalytical", "turnaround_days": 21, "price_range": "$10K-$30K"}
14
+ ],
15
+ "therapeutic_areas": ["oncology", "neuroscience", "immunology", "rare_disease"],
16
+ "capabilities": ["xenograft models", "PDX models", "GLP toxicology", "ADME profiling", "biomarker analysis", "PROTAC evaluation"],
17
+ "specialties": ["in vivo pharmacology", "safety assessment", "drug metabolism"],
18
+ "size": "large"
19
+ },
20
+ {
21
+ "id": "wuxi-apptec",
22
+ "name": "WuXi AppTec",
23
+ "website": "https://www.wuxiapptec.com",
24
+ "contact_email": "info@wuxiapptec.com",
25
+ "headquarters": "Shanghai, China",
26
+ "services": [
27
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$5K-$30K"},
28
+ {"category": "medicinal_chemistry", "turnaround_days": 30, "price_range": "$20K-$80K"},
29
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$5K-$25K"},
30
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$3K-$15K"},
31
+ {"category": "in_vivo_efficacy", "turnaround_days": 45, "price_range": "$30K-$150K"},
32
+ {"category": "high_throughput_screening", "turnaround_days": 30, "price_range": "$50K-$200K"}
33
+ ],
34
+ "therapeutic_areas": ["oncology", "immunology", "metabolic", "neuroscience", "infectious_disease"],
35
+ "capabilities": ["PROTAC synthesis", "molecular glue chemistry", "DEL screening", "FBDD", "CADD", "scale-up synthesis", "GMP manufacturing"],
36
+ "specialties": ["medicinal chemistry", "process chemistry", "TPD compound design"],
37
+ "size": "large"
38
+ },
39
+ {
40
+ "id": "evotec",
41
+ "name": "Evotec SE",
42
+ "website": "https://www.evotec.com",
43
+ "contact_email": "info@evotec.com",
44
+ "headquarters": "Hamburg, Germany",
45
+ "services": [
46
+ {"category": "high_throughput_screening", "turnaround_days": 30, "price_range": "$50K-$200K"},
47
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$10K-$40K"},
48
+ {"category": "medicinal_chemistry", "turnaround_days": 30, "price_range": "$25K-$100K"},
49
+ {"category": "structural_biology", "turnaround_days": 45, "price_range": "$30K-$80K"},
50
+ {"category": "proteomics", "turnaround_days": 21, "price_range": "$15K-$50K"}
51
+ ],
52
+ "therapeutic_areas": ["oncology", "neuroscience", "metabolic", "immunology", "infectious_disease"],
53
+ "capabilities": ["iPSC disease models", "phenotypic screening", "fragment screening", "TPD platform", "AI-driven drug design", "mass spectrometry proteomics"],
54
+ "specialties": ["integrated drug discovery", "phenotypic screening", "targeted protein degradation"],
55
+ "size": "large"
56
+ },
57
+ {
58
+ "id": "eurofins",
59
+ "name": "Eurofins Discovery",
60
+ "website": "https://www.eurofinsdiscovery.com",
61
+ "contact_email": "info@eurofinsdiscovery.com",
62
+ "headquarters": "Luxembourg City, Luxembourg",
63
+ "services": [
64
+ {"category": "biochemical_assay", "turnaround_days": 10, "price_range": "$3K-$15K"},
65
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$5K-$25K"},
66
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$3K-$12K"},
67
+ {"category": "toxicology", "turnaround_days": 30, "price_range": "$20K-$80K"},
68
+ {"category": "high_throughput_screening", "turnaround_days": 21, "price_range": "$30K-$150K"}
69
+ ],
70
+ "therapeutic_areas": ["oncology", "neuroscience", "cardiovascular", "immunology"],
71
+ "capabilities": ["kinase profiling", "GPCR assays", "ion channel assays", "safety pharmacology", "selectivity panels", "CEREP panel"],
72
+ "specialties": ["selectivity profiling", "safety pharmacology", "kinase screening"],
73
+ "size": "large"
74
+ },
75
+ {
76
+ "id": "reaction-biology",
77
+ "name": "Reaction Biology",
78
+ "website": "https://www.reactionbiology.com",
79
+ "contact_email": "info@reactionbiology.com",
80
+ "headquarters": "Malvern, PA, USA",
81
+ "services": [
82
+ {"category": "biochemical_assay", "turnaround_days": 7, "price_range": "$2K-$10K"},
83
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$5K-$20K"},
84
+ {"category": "high_throughput_screening", "turnaround_days": 21, "price_range": "$20K-$100K"}
85
+ ],
86
+ "therapeutic_areas": ["oncology", "immunology", "epigenetics"],
87
+ "capabilities": ["ubiquitin pathway assays", "E3 ligase profiling", "degradation assays", "HotSpot kinase panel", "epigenetic enzyme profiling", "TR-FRET"],
88
+ "specialties": ["ubiquitin pathway", "E3 ligase assays", "targeted protein degradation assays", "kinase profiling"],
89
+ "size": "medium"
90
+ },
91
+ {
92
+ "id": "champions-oncology",
93
+ "name": "Champions Oncology",
94
+ "website": "https://www.championsoncology.com",
95
+ "contact_email": "info@championsoncology.com",
96
+ "headquarters": "Hackensack, NJ, USA",
97
+ "services": [
98
+ {"category": "in_vivo_efficacy", "turnaround_days": 60, "price_range": "$40K-$150K"},
99
+ {"category": "cell_based_assay", "turnaround_days": 21, "price_range": "$10K-$40K"},
100
+ {"category": "genomics", "turnaround_days": 14, "price_range": "$5K-$20K"}
101
+ ],
102
+ "therapeutic_areas": ["oncology"],
103
+ "capabilities": ["TumorGraft PDX", "patient-derived organoids", "ex vivo tumor assays", "genomic profiling", "combination studies"],
104
+ "specialties": ["PDX models", "oncology pharmacology", "translational oncology"],
105
+ "size": "medium"
106
+ },
107
+ {
108
+ "id": "crown-bioscience",
109
+ "name": "Crown Bioscience",
110
+ "website": "https://www.crownbio.com",
111
+ "contact_email": "info@crownbio.com",
112
+ "headquarters": "San Diego, CA, USA",
113
+ "services": [
114
+ {"category": "in_vivo_efficacy", "turnaround_days": 45, "price_range": "$30K-$120K"},
115
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$8K-$30K"},
116
+ {"category": "genomics", "turnaround_days": 14, "price_range": "$5K-$25K"}
117
+ ],
118
+ "therapeutic_areas": ["oncology", "immunology", "metabolic"],
119
+ "capabilities": ["HuBase PDX database", "syngeneic models", "humanized mouse models", "immuno-oncology", "organoid screening", "biomarker discovery"],
120
+ "specialties": ["PDX models", "immuno-oncology", "translational models"],
121
+ "size": "medium"
122
+ },
123
+ {
124
+ "id": "promega",
125
+ "name": "Promega Corporation",
126
+ "website": "https://www.promega.com",
127
+ "contact_email": "custserv@promega.com",
128
+ "headquarters": "Madison, WI, USA",
129
+ "services": [
130
+ {"category": "biochemical_assay", "turnaround_days": 7, "price_range": "$2K-$8K"},
131
+ {"category": "cell_based_assay", "turnaround_days": 10, "price_range": "$3K-$15K"},
132
+ {"category": "proteomics", "turnaround_days": 14, "price_range": "$5K-$25K"}
133
+ ],
134
+ "therapeutic_areas": ["oncology", "immunology", "cell_biology"],
135
+ "capabilities": ["NanoBRET ternary complex", "HiBiT degradation assay", "NanoLuc technology", "bioluminescence assays", "cell viability", "target engagement"],
136
+ "specialties": ["degradation assays", "ternary complex measurement", "NanoBRET TPD assays", "target engagement"],
137
+ "size": "large"
138
+ },
139
+ {
140
+ "id": "selvita",
141
+ "name": "Selvita (Ryvu Therapeutics CRO)",
142
+ "website": "https://www.selvita.com",
143
+ "contact_email": "info@selvita.com",
144
+ "headquarters": "Krakow, Poland",
145
+ "services": [
146
+ {"category": "medicinal_chemistry", "turnaround_days": 21, "price_range": "$15K-$50K"},
147
+ {"category": "biochemical_assay", "turnaround_days": 10, "price_range": "$3K-$12K"},
148
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$5K-$20K"},
149
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$3K-$10K"},
150
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$3K-$20K"}
151
+ ],
152
+ "therapeutic_areas": ["oncology", "immunology", "neuroscience"],
153
+ "capabilities": ["integrated drug discovery", "computational chemistry", "SBDD", "PROTAC design", "molecular glue optimization", "ADME screening"],
154
+ "specialties": ["medicinal chemistry", "TPD compound optimization", "structure-based drug design"],
155
+ "size": "medium"
156
+ },
157
+ {
158
+ "id": "pharmaron",
159
+ "name": "Pharmaron",
160
+ "website": "https://www.pharmaron.com",
161
+ "contact_email": "info@pharmaron.com",
162
+ "headquarters": "Beijing, China",
163
+ "services": [
164
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$3K-$20K"},
165
+ {"category": "medicinal_chemistry", "turnaround_days": 21, "price_range": "$15K-$60K"},
166
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$3K-$12K"},
167
+ {"category": "in_vivo_efficacy", "turnaround_days": 45, "price_range": "$25K-$100K"},
168
+ {"category": "toxicology", "turnaround_days": 60, "price_range": "$50K-$300K"},
169
+ {"category": "bioanalytical", "turnaround_days": 14, "price_range": "$5K-$20K"}
170
+ ],
171
+ "therapeutic_areas": ["oncology", "neuroscience", "metabolic", "immunology"],
172
+ "capabilities": ["PROTAC synthesis", "linker chemistry", "PK/PD modeling", "GLP toxicology", "radiolabeled ADME", "large-scale synthesis"],
173
+ "specialties": ["PROTAC and degrader synthesis", "linker design", "process chemistry"],
174
+ "size": "large"
175
+ },
176
+ {
177
+ "id": "bioivt",
178
+ "name": "BioIVT",
179
+ "website": "https://www.bioivt.com",
180
+ "contact_email": "info@bioivt.com",
181
+ "headquarters": "Westbury, NY, USA",
182
+ "services": [
183
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$3K-$15K"},
184
+ {"category": "bioanalytical", "turnaround_days": 14, "price_range": "$5K-$20K"},
185
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$5K-$20K"}
186
+ ],
187
+ "therapeutic_areas": ["oncology", "immunology", "metabolic", "hepatology"],
188
+ "capabilities": ["hepatocyte assays", "microsomal stability", "CYP inhibition", "transporter assays", "plasma stability", "protein binding"],
189
+ "specialties": ["ADME profiling", "hepatic metabolism", "biospecimen services"],
190
+ "size": "medium"
191
+ },
192
+ {
193
+ "id": "revvity",
194
+ "name": "Revvity (formerly PerkinElmer)",
195
+ "website": "https://www.revvity.com",
196
+ "contact_email": "info@revvity.com",
197
+ "headquarters": "Waltham, MA, USA",
198
+ "services": [
199
+ {"category": "high_throughput_screening", "turnaround_days": 21, "price_range": "$30K-$150K"},
200
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$8K-$30K"},
201
+ {"category": "genomics", "turnaround_days": 14, "price_range": "$5K-$20K"},
202
+ {"category": "proteomics", "turnaround_days": 21, "price_range": "$10K-$40K"}
203
+ ],
204
+ "therapeutic_areas": ["oncology", "immunology", "neuroscience", "rare_disease"],
205
+ "capabilities": ["AlphaScreen", "AlphaLISA", "high-content imaging", "operetta screening", "LANCE TR-FRET", "flow cytometry"],
206
+ "specialties": ["high-content screening", "proximity assays", "compound profiling"],
207
+ "size": "large"
208
+ },
209
+ {
210
+ "id": "proteros",
211
+ "name": "Proteros Biostructures",
212
+ "website": "https://www.proteros.com",
213
+ "contact_email": "info@proteros.com",
214
+ "headquarters": "Munich, Germany",
215
+ "services": [
216
+ {"category": "structural_biology", "turnaround_days": 30, "price_range": "$20K-$60K"},
217
+ {"category": "biochemical_assay", "turnaround_days": 10, "price_range": "$5K-$20K"},
218
+ {"category": "high_throughput_screening", "turnaround_days": 21, "price_range": "$30K-$100K"}
219
+ ],
220
+ "therapeutic_areas": ["oncology", "immunology", "neuroscience"],
221
+ "capabilities": ["X-ray crystallography", "cryo-EM", "fragment screening", "SBDD", "ternary complex crystallography", "SPR binding"],
222
+ "specialties": ["ternary complex structures", "E3 ligase structural biology", "protein crystallography for TPD"],
223
+ "size": "small"
224
+ },
225
+ {
226
+ "id": "enamine",
227
+ "name": "Enamine",
228
+ "website": "https://www.enamine.net",
229
+ "contact_email": "info@enamine.net",
230
+ "headquarters": "Kyiv, Ukraine",
231
+ "services": [
232
+ {"category": "custom_synthesis", "turnaround_days": 10, "price_range": "$1K-$10K"},
233
+ {"category": "medicinal_chemistry", "turnaround_days": 14, "price_range": "$5K-$25K"}
234
+ ],
235
+ "therapeutic_areas": ["oncology", "neuroscience", "immunology", "infectious_disease"],
236
+ "capabilities": ["REAL compound library", "make-on-demand compounds", "building block synthesis", "molecular glue building blocks", "E3 ligase ligand libraries", "fragment libraries"],
237
+ "specialties": ["compound libraries", "building blocks", "make-on-demand synthesis", "E3 ligase ligand supply"],
238
+ "size": "large"
239
+ },
240
+ {
241
+ "id": "jubilant-biosys",
242
+ "name": "Jubilant Biosys",
243
+ "website": "https://www.jubilantbiosys.com",
244
+ "contact_email": "info@jubilantbiosys.com",
245
+ "headquarters": "Bangalore, India",
246
+ "services": [
247
+ {"category": "medicinal_chemistry", "turnaround_days": 21, "price_range": "$10K-$40K"},
248
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$5K-$15K"},
249
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$2K-$10K"},
250
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$2K-$15K"},
251
+ {"category": "biochemical_assay", "turnaround_days": 10, "price_range": "$3K-$12K"}
252
+ ],
253
+ "therapeutic_areas": ["oncology", "metabolic", "immunology", "neuroscience"],
254
+ "capabilities": ["integrated discovery", "SBDD", "CADD", "degrader chemistry", "PK profiling", "in vitro ADME"],
255
+ "specialties": ["integrated drug discovery", "medicinal chemistry FTE", "cost-effective screening"],
256
+ "size": "medium"
257
+ },
258
+ {
259
+ "id": "sai-life-sciences",
260
+ "name": "Sai Life Sciences",
261
+ "website": "https://www.sailife.com",
262
+ "contact_email": "info@sailife.com",
263
+ "headquarters": "Hyderabad, India",
264
+ "services": [
265
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$2K-$15K"},
266
+ {"category": "medicinal_chemistry", "turnaround_days": 21, "price_range": "$10K-$40K"},
267
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$2K-$10K"},
268
+ {"category": "formulation", "turnaround_days": 21, "price_range": "$10K-$30K"},
269
+ {"category": "bioanalytical", "turnaround_days": 14, "price_range": "$3K-$15K"}
270
+ ],
271
+ "therapeutic_areas": ["oncology", "metabolic", "immunology"],
272
+ "capabilities": ["PROTAC synthesis", "degrader chemistry", "scale-up", "formulation development", "GMP synthesis", "analytical services"],
273
+ "specialties": ["PROTAC and degrader synthesis", "process chemistry", "scale-up manufacturing"],
274
+ "size": "medium"
275
+ },
276
+ {
277
+ "id": "crelux",
278
+ "name": "Crelux (a WuXi company)",
279
+ "website": "https://www.crelux.com",
280
+ "contact_email": "info@crelux.com",
281
+ "headquarters": "Munich, Germany",
282
+ "services": [
283
+ {"category": "structural_biology", "turnaround_days": 30, "price_range": "$20K-$60K"},
284
+ {"category": "biochemical_assay", "turnaround_days": 10, "price_range": "$5K-$15K"},
285
+ {"category": "high_throughput_screening", "turnaround_days": 21, "price_range": "$25K-$100K"}
286
+ ],
287
+ "therapeutic_areas": ["oncology", "immunology", "neuroscience"],
288
+ "capabilities": ["protein production", "X-ray crystallography", "biophysical screening", "SPR", "DSF thermal shift", "ternary complex structures"],
289
+ "specialties": ["structural biology for TPD", "ternary complex crystallography", "biophysical characterization"],
290
+ "size": "small"
291
+ },
292
+ {
293
+ "id": "novabioassays",
294
+ "name": "NovaBioAssays",
295
+ "website": "https://www.novabioassays.com",
296
+ "contact_email": "info@novabioassays.com",
297
+ "headquarters": "Woburn, MA, USA",
298
+ "services": [
299
+ {"category": "biochemical_assay", "turnaround_days": 7, "price_range": "$2K-$8K"},
300
+ {"category": "cell_based_assay", "turnaround_days": 10, "price_range": "$3K-$15K"},
301
+ {"category": "proteomics", "turnaround_days": 14, "price_range": "$5K-$25K"}
302
+ ],
303
+ "therapeutic_areas": ["oncology", "immunology"],
304
+ "capabilities": ["ubiquitin assays", "E3 ligase activity", "degradation quantification", "AlphaScreen", "TR-FRET", "mass spec degradation"],
305
+ "specialties": ["TPD assay development", "ubiquitin pathway profiling", "degradation quantification"],
306
+ "size": "small"
307
+ },
308
+ {
309
+ "id": "chempartner",
310
+ "name": "ChemPartner",
311
+ "website": "https://www.chempartner.com",
312
+ "contact_email": "info@chempartner.com",
313
+ "headquarters": "Shanghai, China",
314
+ "services": [
315
+ {"category": "medicinal_chemistry", "turnaround_days": 21, "price_range": "$10K-$40K"},
316
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$3K-$15K"},
317
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$5K-$20K"},
318
+ {"category": "high_throughput_screening", "turnaround_days": 21, "price_range": "$25K-$100K"},
319
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$3K-$12K"}
320
+ ],
321
+ "therapeutic_areas": ["oncology", "immunology", "neuroscience", "metabolic"],
322
+ "capabilities": ["degrader chemistry", "PROTAC design", "HTS campaigns", "CADD", "in vitro pharmacology", "selectivity profiling"],
323
+ "specialties": ["integrated drug discovery", "HTS", "degrader medicinal chemistry"],
324
+ "size": "medium"
325
+ },
326
+ {
327
+ "id": "bioduro-sundia",
328
+ "name": "BioDuro-Sundia",
329
+ "website": "https://www.bioduro-sundia.com",
330
+ "contact_email": "info@bioduro-sundia.com",
331
+ "headquarters": "San Diego, CA, USA",
332
+ "services": [
333
+ {"category": "medicinal_chemistry", "turnaround_days": 21, "price_range": "$10K-$40K"},
334
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$3K-$20K"},
335
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$5K-$20K"},
336
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$3K-$12K"},
337
+ {"category": "in_vivo_efficacy", "turnaround_days": 45, "price_range": "$25K-$100K"}
338
+ ],
339
+ "therapeutic_areas": ["oncology", "immunology", "neuroscience"],
340
+ "capabilities": ["PROTAC synthesis", "degrader optimization", "AI drug design", "biology services", "PK studies", "efficacy models"],
341
+ "specialties": ["degrader chemistry", "AI-augmented drug design", "integrated discovery"],
342
+ "size": "medium"
343
+ },
344
+ {
345
+ "id": "concept-life-sciences",
346
+ "name": "Concept Life Sciences",
347
+ "website": "https://www.conceptlifesciences.com",
348
+ "contact_email": "info@conceptlifesciences.com",
349
+ "headquarters": "Manchester, UK",
350
+ "services": [
351
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$3K-$15K"},
352
+ {"category": "bioanalytical", "turnaround_days": 14, "price_range": "$5K-$20K"},
353
+ {"category": "formulation", "turnaround_days": 21, "price_range": "$10K-$30K"},
354
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$3K-$12K"}
355
+ ],
356
+ "therapeutic_areas": ["oncology", "neuroscience", "metabolic"],
357
+ "capabilities": ["analytical chemistry", "process development", "formulation", "bioanalytical LC-MS", "stability testing", "method development"],
358
+ "specialties": ["analytical services", "formulation development", "bioanalytical method validation"],
359
+ "size": "medium"
360
+ },
361
+ {
362
+ "id": "aragen",
363
+ "name": "Aragen Life Sciences",
364
+ "website": "https://www.aragen.com",
365
+ "contact_email": "info@aragen.com",
366
+ "headquarters": "Hyderabad, India",
367
+ "services": [
368
+ {"category": "custom_synthesis", "turnaround_days": 14, "price_range": "$2K-$12K"},
369
+ {"category": "medicinal_chemistry", "turnaround_days": 21, "price_range": "$8K-$35K"},
370
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$3K-$15K"},
371
+ {"category": "ADME_DMPK", "turnaround_days": 10, "price_range": "$2K-$8K"},
372
+ {"category": "in_vivo_efficacy", "turnaround_days": 45, "price_range": "$20K-$80K"}
373
+ ],
374
+ "therapeutic_areas": ["oncology", "metabolic", "immunology", "rare_disease"],
375
+ "capabilities": ["integrated discovery", "PROTAC synthesis", "biology screening", "in vivo pharmacology", "DMPK", "computational chemistry"],
376
+ "specialties": ["cost-effective drug discovery", "integrated FTE model", "degrader chemistry"],
377
+ "size": "medium"
378
+ },
379
+ {
380
+ "id": "cellective-therapeutics",
381
+ "name": "Cellective Therapeutics",
382
+ "website": "https://www.cellective.com",
383
+ "contact_email": "info@cellective.com",
384
+ "headquarters": "San Francisco, CA, USA",
385
+ "services": [
386
+ {"category": "cell_based_assay", "turnaround_days": 14, "price_range": "$8K-$30K"},
387
+ {"category": "proteomics", "turnaround_days": 14, "price_range": "$10K-$40K"},
388
+ {"category": "genomics", "turnaround_days": 14, "price_range": "$8K-$25K"}
389
+ ],
390
+ "therapeutic_areas": ["oncology", "immunology"],
391
+ "capabilities": ["CRISPR screening", "degradation proteomics", "neo-substrate profiling", "mass spec quantification", "TPD selectivity profiling", "unbiased proteomics"],
392
+ "specialties": ["TPD selectivity profiling", "degradation proteomics", "neo-substrate identification", "molecular glue characterization"],
393
+ "size": "small"
394
+ }
395
+ ]