assess_drug_likeness
Evaluate drug-likeness of chemical compounds using Lipinski's Rule of Five, Veber rules, and PAINS filters. Input PubChem CID or SMILES string to assess molecular properties for drug development.
Instructions
Assess drug-likeness using Lipinski Rule of Five, Veber rules, and PAINS filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | No | PubChem Compound ID (CID) | |
smiles | No | SMILES string (alternative to CID) |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"description": "PubChem Compound ID (CID)",
"type": [
"number",
"string"
]
},
"smiles": {
"description": "SMILES string (alternative to CID)",
"type": "string"
}
},
"required": [],
"type": "object"
}