tooluniverse-kegg-disease-drug
KEGG-based disease-drug-variant network research. Connects diseases to causal genes, drugs to molecular targets, and variants to pathways using KEGG's editorially curated databases (KEGG Disease, Drug, Network, Variant, Pathway). Use for drug repurposing via shared pathways, mechanistic disease-gene-drug networks, and pathway-based target discovery. Distinguishes direct (binding) vs indirect (pathway co-membership) drug-target relationships.
What this skill does
# KEGG Disease-Drug-Variant Research Systematic exploration of disease-drug-variant relationships using KEGG's curated databases. ## Reasoning Strategy KEGG maps diseases to pathways and drugs to targets, but the real value is in the connections — which pathways link a disease gene to a drug target? This is a network question, not a simple lookup. A gene appearing in a KEGG disease entry has been editorially reviewed as mechanistically relevant; a drug entry with a confirmed target is more reliable than one inferred from pathway co-membership. When using KEGG for drug repurposing, always ask: is the drug-target relationship direct (the drug binds the gene product) or indirect (the drug affects a pathway that contains the gene)? Direct relationships are far stronger evidence. KEGG coverage is not exhaustive — absence from KEGG does not mean absence of biological involvement; complement with Reactome, WikiPathways, or CTD for broader coverage. ID namespace differences are a frequent source of errors: KEGG uses its own gene IDs (e.g., hsa:7157 for TP53), so always convert external IDs before querying KEGG-specific tools. **LOOK UP DON'T GUESS**: Do not assume KEGG disease IDs, drug IDs, or gene IDs from memory — always search first with `KEGG_search_disease`, `KEGG_search_drug`, or `KEGG_convert_ids`. Do not assume which pathways link a disease gene to a drug; use `KEGG_link_entries` and `KEGG_get_network` to retrieve the actual connections. ## When to Use - "What genes are associated with [disease] in KEGG?" - "Find KEGG drugs targeting [gene/pathway]" - "What variants are linked to [disease] in KEGG?" - "Show the KEGG disease-gene-drug network for [condition]" - "Find drugs targeting BRAF variants in cancer" ## Tool Inventory (12 tools) | Tool | Key Params | Returns | |------|-----------|---------| | KEGG_search_disease | `keyword` | Disease entries matching keyword | | KEGG_get_disease | `disease_id` (e.g., "H00004") | Disease details: genes, drugs, pathways | | KEGG_get_disease_genes | `disease_id` | All genes for a disease | | KEGG_search_drug | `keyword` | Drug entries matching keyword | | KEGG_get_drug | `drug_id` (e.g., "D00123") | Drug details: targets, pathways, metabolism | | KEGG_get_drug_targets | `drug_id` | Molecular targets for a drug | | KEGG_search_network | `keyword` | Network entries (disease-gene-drug) | | KEGG_get_network | `network_id` | Network details and relationships | | KEGG_search_variant | `keyword` | Variant entries matching keyword | | KEGG_get_variant | `variant_id` | Variant details and disease associations | | KEGG_convert_ids | `source_db`, `target_db`, `ids` | Convert identifiers between KEGG and external databases (e.g., NCBI Gene ↔ KEGG gene IDs, UniProt ↔ KEGG) | | KEGG_link_entries | `target_db`, `source_db_or_ids` | Find cross-database relationships (e.g., all genes linked to a pathway, all drugs linked to a disease) | ## Workflow ``` Phase 1: Disease Lookup -> Phase 2: Disease Genes -> Phase 3: Drug Search -> Phase 4: Drug Targets -> Phase 5: Network/Variant Context -> Report ``` ### Phase 1: Disease Lookup Search and retrieve KEGG disease entries. ```python # Search for cancer-related diseases diseases = tu.tools.KEGG_search_disease(keyword="breast cancer") # Get details for a specific disease disease = tu.tools.KEGG_get_disease(disease_id="H00031") ``` ### Phase 2: Disease Genes Get genes associated with a KEGG disease entry. ```python genes = tu.tools.KEGG_get_disease_genes(disease_id="H00031") ``` ### Phase 3: Drug Search Find KEGG drugs by name, target, or keyword. ```python drugs = tu.tools.KEGG_search_drug(keyword="vemurafenib") drug_detail = tu.tools.KEGG_get_drug(drug_id="D09996") ``` ### Phase 4: Drug Targets Get molecular targets for a drug. ```python targets = tu.tools.KEGG_get_drug_targets(drug_id="D09996") ``` ### Phase 5: Network & Variant Context Explore disease-gene-drug networks and variant annotations. ```python # Search networks linking disease, genes, and drugs networks = tu.tools.KEGG_search_network(keyword="BRAF melanoma") network = tu.tools.KEGG_get_network(network_id="N00001") # Search and get variant details variants = tu.tools.KEGG_search_variant(keyword="BRAF V600E") variant = tu.tools.KEGG_get_variant(variant_id="hsa:BRAF") ``` ## Example Workflow: Find Drugs Targeting BRAF Variants in Cancer ```python from tooluniverse import ToolUniverse tu = ToolUniverse() tu.load_tools() # 1. Find BRAF-related diseases diseases = tu.tools.KEGG_search_disease(keyword="BRAF") # 2. Get disease genes for melanoma genes = tu.tools.KEGG_get_disease_genes(disease_id="H00038") # 3. Search for BRAF-targeting drugs drugs = tu.tools.KEGG_search_drug(keyword="BRAF inhibitor") # 4. Get targets for vemurafenib targets = tu.tools.KEGG_get_drug_targets(drug_id="D09996") # 5. Get BRAF variant info variants = tu.tools.KEGG_search_variant(keyword="BRAF V600E") # 6. Explore disease-gene-drug network networks = tu.tools.KEGG_search_network(keyword="BRAF melanoma") ``` ## ID Conversion & Cross-Linking Use `KEGG_convert_ids` to map between KEGG identifiers and external databases before or after lookups: ```python # Convert NCBI Gene IDs to KEGG gene IDs for human (hsa) result = tu.tools.KEGG_convert_ids(source_db="ncbi-geneid", target_db="hsa", ids=["672", "675"]) # Convert UniProt accessions to KEGG entries result = tu.tools.KEGG_convert_ids(source_db="up", target_db="hsa", ids=["P38398"]) ``` Use `KEGG_link_entries` to retrieve relationships between KEGG databases: ```python # Find all KEGG pathway IDs that contain a given gene result = tu.tools.KEGG_link_entries(target_db="pathway", source_db_or_ids="hsa:7157") # Find all genes linked to a specific pathway result = tu.tools.KEGG_link_entries(target_db="hsa", source_db_or_ids="path:hsa05210") ``` These tools are especially useful when you have external IDs (Entrez Gene, UniProt, ChEMBL) and need to bridge into KEGG's namespace, or when you want a complete gene-pathway or drug-disease adjacency list. ## Integration with Other Skills - **Pathway details**: Use `tooluniverse-systems-biology` for Reactome/WikiPathways cross-ref - **Drug mechanisms**: Use `tooluniverse-drug-mechanism-research` for ChEMBL/DailyMed MOA - **Clinical variants**: Use `tooluniverse-cancer-variant-interpretation` for CIViC/ClinVar - **Drug safety**: Use `tooluniverse-adverse-event-detection` for FAERS data ## Reasoning Framework for Result Interpretation ### Evidence Grading | Grade | Criteria | Example | |-------|----------|---------| | **Strong** | KEGG disease entry with curated gene list, drug with confirmed target, pathway mechanistically linked | H00031 (breast cancer) with BRCA1/BRCA2 genes, D09996 (vemurafenib) targeting BRAF | | **Moderate** | Disease-gene link in KEGG but no drug-target validation, or network entry without variant data | KEGG disease entry lists gene, but drug targets are inferred from pathway membership | | **Weak** | Keyword search hit only, no curated disease-gene-drug relationship in KEGG | Drug found by name search but not linked to the disease in KEGG network | | **Insufficient** | No KEGG entries found, or only cross-database ID conversion available | Rare disease not curated in KEGG Disease | ### Interpretation Guidance - **KEGG pathway significance**: KEGG pathways are manually curated maps of molecular interactions. A gene appearing in a KEGG disease pathway has been editorially reviewed as relevant to that disease mechanism. However, KEGG coverage is not exhaustive -- absence from KEGG does not mean absence of involvement. Cross-reference with Reactome or WikiPathways for broader coverage. - **Disease-drug network interpretation**: KEGG Network entries (N-codes) link diseases, genes, and drugs in mechanistic triangles. A drug targeting a gene in a disease network has a curated rationale for therapeutic relevance. The network structure distinguishes direct targets (drug binds gene product) from pathway-le
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.