Agent skill · Databases

bio-pathway-kegg-pathways

KEGG pathway and module enrichment analysis using clusterProfiler enrichKEGG and enrichMKEGG. Tests whether KEGG pathways are over-represented in a gene list. Supports 4000+ organisms via KEGG online database.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill kegg-pathways-gptomics-bioskills-b0a7f35a --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/ai-ml/kegg-pathways-gptomics-bioskills-b0a7f35a/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# KEGG Pathway Enrichment ## Core Pattern ```r library(clusterProfiler) kk <- enrichKEGG( gene = gene_list, # Character vector of gene IDs organism = 'hsa', # KEGG organism code pvalueCutoff = 0.05, pAdjustMethod = 'BH' ) ``` ## Prepare Gene List ```r library(org.Hs.eg.db) de_results <- read.csv('de_results.csv') sig_genes <- de_results$gene_id[de_results$padj < 0.05 & abs(de_results$log2FoldChange) > 1] # KEGG requires NCBI Entrez gene IDs (kegg, ncbi-geneid) gene_ids <- bitr(sig_genes, fromType = 'SYMBOL', toType = 'ENTREZID', OrgDb = org.Hs.eg.db) gene_list <- gene_ids$ENTREZID ``` ## KEGG ID Conversion ```r # Convert between KEGG and other IDs kegg_ids <- bitr_kegg(gene_list, fromType = 'ncbi-geneid', toType = 'kegg', organism = 'hsa') # Available types: kegg, ncbi-geneid, ncbi-proteinid, uniprot ``` ## Run KEGG Pathway Enrichment ```r kk <- enrichKEGG( gene = gene_list, organism = 'hsa', keyType = 'ncbi-geneid', # or 'kegg' pvalueCutoff = 0.05, pAdjustMethod = 'BH', minGSSize = 10, maxGSSize = 500 ) # View results head(kk) results <- as.data.frame(kk) ``` ## Make Results Readable ```r # enrichKEGG does NOT have readable parameter - use setReadable library(org.Hs.eg.db) kk_read

What's inside
Steps it walks through
  1. Core Pattern
  2. Prepare Gene List
  3. KEGG ID Conversion
  4. Run KEGG Pathway Enrichment
  5. Make Results Readable
  6. KEGG Module Enrichment
  7. Common Organism Codes
  8. With Background Universe
  9. Extract and Export Results
  10. Browse KEGG Pathways
  11. Key Parameters
  12. Compare Multiple Gene Lists
  13. Notes
  14. Related Skills
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the bio-pathway-kegg-pathways skill do?

KEGG pathway and module enrichment analysis using clusterProfiler enrichKEGG and enrichMKEGG. Tests whether KEGG pathways are over-represented in a gene list. Supports 4000+ organisms via KEGG online database.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill kegg-pathways-gptomics-bioskills-b0a7f35a --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going