formula_kinetic_laws
Extract kinetic equations from SBML models using BioModels IDs to retrieve reaction rates and parameters for mathematical modeling.
Instructions
獲取 BioModels 模型的動力學公式
從 SBML 模型中提取所有動力學方程式。
Args:
model_id: BioModels 模型 ID(如 "BIOMD0000000012")
Returns:
{
"success": true,
"model_id": "BIOMD0000000012",
"kinetic_laws": [
{
"reaction_id": "v1",
"name": "Enzyme binding",
"math": "k1 * E * S",
"parameters": [
{"id": "k1", "value": "0.1", "units": "per_second"}
]
}
]
}
Example:
formula_kinetic_laws("BIOMD0000000012")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||