Programmatic access to the BRENDA enzyme database via the SOAP API; use when you need kinetic constants (Km, kcat, Vmax), reaction equations, enzyme properties (pH/temperature optima, stability), or enzyme discovery by EC/substrate/product.
61
73%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Evidence Insight/brenda-database/SKILL.md.env file.3.xzeep (SOAP client)requestsInstall (example):
uv pip install zeep requests.env file loaded by your environment):export BRENDA_EMAIL="your_email@example.com"
export BRENDA_PASSWORD="your_password"python scripts/brenda_queries.pyscripts/brenda_queries.py):import os
from scripts.brenda_queries import BrendaClient
email = os.environ["BRENDA_EMAIL"]
password = os.environ["BRENDA_PASSWORD"]
client = BrendaClient(email=email, password=password)
# Example: retrieve Km values for an EC number
km_records = client.get_km_values(ec_number="1.1.1.1")
for r in km_records:
print(r)
# Example: retrieve reactions for an EC number
reactions = client.get_reactions(ec_number="1.1.1.1")
for rxn in reactions:
print(rxn)For a complete list of available API methods and parameters, see: references/api_reference.md.
Authentication / Connection
zeep) using BRENDA credentials (email/password)..env-backed environment setup.Query Execution
get_km_values and get_reactions (and other supported endpoints for properties and discovery).Response Parsing
organism*E. coli#value*...).scripts/brenda_queries.py is responsible for:
Output Structure
brenda_database_result.md unless the skill documentation defines a better convention.Run this minimal verification path before full execution when possible:
python scripts/brenda_queries.py --helpExpected output format:
Result file: brenda_database_result.md
Validation summary: PASS/FAIL with brief notes
Assumptions: explicit list if any63c61d3
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.