calculate_descriptors
Calculate molecular descriptors and fingerprints for PubChem compounds to analyze chemical properties, structural features, and molecular characteristics for research applications.
Instructions
Calculate comprehensive molecular descriptors and fingerprints
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cid | Yes | PubChem Compound ID (CID) | |
descriptor_type | No | Type of descriptors (default: all) |
Input Schema (JSON Schema)
{
"properties": {
"cid": {
"description": "PubChem Compound ID (CID)",
"type": [
"number",
"string"
]
},
"descriptor_type": {
"description": "Type of descriptors (default: all)",
"enum": [
"all",
"basic",
"topological",
"3d"
],
"type": "string"
}
},
"required": [
"cid"
],
"type": "object"
}