kegg-database

Solid

Direct REST API access to KEGG (academic use only). Pathway analysis, gene-pathway mapping, metabolic pathways, drug interactions, ID conversion. For Python workflows with multiple databases, prefer bioservices. Use this for direct HTTP/REST work or KEGG-specific control.

AI & Automation 2,210 stars 164 forks Updated 1 weeks ago Apache-2.0

Install

View on GitHub

Quality Score: 91/100

Stars 20%
100
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# KEGG Database ## Overview KEGG (Kyoto Encyclopedia of Genes and Genomes) is a comprehensive bioinformatics resource for biological pathway analysis and molecular interaction networks. **Important**: KEGG API is made available only for academic use by academic users. ## When to Use This Skill This skill should be used when querying pathways, genes, compounds, enzymes, diseases, and drugs across multiple organisms using KEGG's REST API. ## Quick Start The skill provides: 1. Python helper functions (`scripts/kegg_api.py`) for all KEGG REST API operations 2. Comprehensive reference documentation (`references/kegg_reference.md`) with detailed API specifications When users request KEGG data, determine which operation is needed and use the appropriate function from `scripts/kegg_api.py`. ## Core Operations ### 1. Database Information (`kegg_info`) Retrieve metadata and statistics about KEGG databases. **When to use**: Understanding database structure, checking available data, getting release information. **Usage**: ```python from scripts.kegg_api import kegg_info # Get pathway database info info = kegg_info('pathway') # Get organism-specific info hsa_info = kegg_info('hsa') # Human genome ``` **Common databases**: `kegg`, `pathway`, `module`, `brite`, `genes`, `genome`, `compound`, `glycan`, `reaction`, `enzyme`, `disease`, `drug` ### 2. Listing Entries (`kegg_list`) List entry identifiers and names from KEGG databases. **When to use**: Getting all pathways for...

Details

Author
foryourhealth111-pixel
Repository
foryourhealth111-pixel/Vibe-Skills
Created
3 months ago
Last Updated
1 weeks ago
Language
Python
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category