Agent skill

bio-metabolomics-pathway-mapping

Map metabolites to biological pathways using KEGG, Reactome, and MetaboAnalyst. Perform pathway enrichment and topology analysis. Use when interpreting metabolomics results in the context of biochemical pathways.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill pathway-mapping --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/ai-ml/pathway-mapping/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

# Metabolomics Pathway Mapping ## KEGG Pathway Enrichment ```r library(MetaboAnalystR) # Initialize MetaboAnalyst mSet <- InitDataObjects('conc', 'pathora', FALSE) # Set organism mSet <- SetOrganism(mSet, 'hsa') # Human # Load metabolite list (HMDB IDs or compound names) metabolites <- c('HMDB0000001', 'HMDB0000005', 'HMDB0000010') # Example HMDB IDs # Or use names: c('Glucose', 'Lactate', 'Pyruvate') mSet <- Setup.MapData(mSet, metabolites) mSet <- CrossReferencing(mSet, 'hmdb') # Or 'name', 'kegg', 'pubchem' # Pathway analysis mSet <- SetKEGG.PathLib(mSet, 'hsa', 'current') mSet <- SetMetabolomeFilter(mSet, FALSE) mSet <- CalculateOraScore(mSet, 'rbc', 'hyperg') # Over-representation # Get results pathway_results <- mSet$analSet$ora.mat print(pathway_results) ``` ## Quantitative Enrichment Analysis (QEA) ```r # For continuous data (fold changes or concentrations) mSet <- InitDataObjects('conc', 'pathqea', FALSE) mSet <- SetOrganism(mSet, 'hsa') # Load data with values metabolite_data <- data.frame( compound = c('Glucose', 'Lactate', 'Pyruvate'), fc = c(1.5, 2.3, 0.7) # Fold changes ) mSet <- Setup.MapData(mSet, metabolite_data) mSet <- CrossReferencing(mSet, 'name') # QEA analysi

What's inside
Steps it walks through
  1. KEGG Pathway Enrichment
  2. Quantitative Enrichment Analysis (QEA)
  3. Topology-Based Analysis
  4. Reactome Pathways
  5. KEGG Mapper (Direct API)
  6. Pathway Visualization
  7. Network-Based Analysis
  8. Metabolite Set Enrichment
  9. Combine with Gene Expression
  10. Export Results
  11. Related Skills
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the bio-metabolomics-pathway-mapping skill do?

Map metabolites to biological pathways using KEGG, Reactome, and MetaboAnalyst. Perform pathway enrichment and topology analysis. Use when interpreting metabolomics results in the context of biochemical pathways.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill pathway-mapping --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