원클릭으로
chembl
ChEMBL database access for bioactivity data and target search
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
ChEMBL database access for bioactivity data and target search
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Shared operational contract for all MedSci agents: sequential execution, planning phase, retry limits, evidence standards.
Isolated exploratory code execution with medsci-sandbox tools. Use when analysis requires custom code beyond existing domain MCP tools.
AlphaFold DB for predicted protein structures and pLDDT confidence scores
Molecular biology toolkit. Use for FASTA parsing, sequence analysis, and translation.
Datamol for molecular manipulation, SMILES processing, and cheminformatics
Molecular ML with DeepChem - featurizers, models, and molecular property prediction
| name | chembl |
| description | ChEMBL database access for bioactivity data and target search |
ChEMBL is a large-scale bioactivity database maintained by EMBL-EBI. It contains binding, functional, and ADMET data for drug-like molecules against biological targets.
from chembl_webresource_client.new_client import new_client
molecule = new_client.molecule
activity = new_client.activity
target = new_client.target
results = target.search("cyclooxygenase-2")
for t in results:
print(t["target_chembl_id"], t["pref_name"], t["organism"])
acts = activity.filter(target_chembl_id="CHEMBL220", standard_type="IC50", pchembl_value__isnull=False)
for a in acts:
print(a["molecule_chembl_id"], a["pchembl_value"], a["canonical_smiles"])
mol = molecule.get("CHEMBL25") # aspirin
mol = molecule.filter(molecule_structures__canonical_smiles="CC(=O)Oc1ccccc1C(=O)O")
pchembl_value__isnull=False for comparable potency data.pip install chembl-webresource-client.