Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
mims-harvard avatar

Tooluniverse Metabolomics Analysis

  • 338 installs
  • 1.6k repo stars
  • Updated August 4, 2026
  • mims-harvard/tooluniverse

tooluniverse-metabolomics-analysis is an agent skill that runs an 8-phase metabolomics workflow—from metabolite identification through normalization, differential statistics, and KEGG/Reactome pathway enrichment—for deve

About

tooluniverse-metabolomics-analysis is a ToolUniverse agent skill for end-to-end metabolomics analysis on LC-MS, GC-MS, and NMR data. The workflow moves from peak-table import and HMDB/KEGG metabolite matching through QC filters (CV < 30%, blank ratio > 3x), TIC/PQN/internal-standard normalization, PCA and PLS-DA exploration, differential testing with FDR correction, and MSEA pathway enrichment. Phase 7 integrates enzyme expression from companion omics skills, and Phase 8 generates a structured report with visualizations. Quantified minimums require at least 50 identified metabolites and 3 replicates per condition. Reach for this skill when an agent must process untargeted metabolomics output, choose normalization strategy, or connect metabolite changes to KEGG and Reactome pathways without guessing database IDs.

  • Metabolomics analysis tool endpoints
  • QC and preprocessing helpers
  • Pathway and feature linkage
  • Agent-driven reproducible pipelines
  • ToolUniverse analysis orchestration

Tooluniverse Metabolomics Analysis by the numbers

  • 338 all-time installs (skills.sh)
  • +6 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #555 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/mims-harvard/tooluniverse --skill tooluniverse-metabolomics-analysis

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs338
repo stars1.6k
Last updatedAugust 4, 2026
Repositorymims-harvard/tooluniverse

How do you analyze LC-MS metabolomics data end to end?

Support agents running metabolomics analysis steps—normalization context, feature tables, pathway enrichment hooks—while generating reproducible notebooks or QC reports.

Who is it for?

Bioinformatics and computational biology developers processing untargeted metabolomics datasets who need database-backed identification, normalization guidance, and pathway interpretation in reproducible reports.

Skip if: Developers seeking clinical diagnostic validation or absolute quantification without internal standards should skip this skill because coverage and quantification remain relative-abundance focused.

When should I use this skill?

A user uploads metabolomics peak tables, asks for differential metabolites, pathway enrichment, or multi-omics integration with transcriptomics or proteomics layers.

What you get

QC report, normalized peak table, differential metabolite list with FDR values, pathway enrichment results, and multi-omics integration summary.

  • differential metabolite table
  • pathway enrichment report
  • QC summary

By the numbers

  • 8-phase workflow from data import through report generation
  • Integrates with 4 companion ToolUniverse omics skills
  • Requires minimum 50 identified metabolites and 3 replicates per condition

Files

SKILL.mdMarkdownGitHub ↗

Metabolomics Analysis

Comprehensive analysis of metabolomics data from metabolite identification through quantification, statistical analysis, pathway interpretation, and integration with other omics layers.

Domain Reasoning

Metabolomics quantification depends critically on normalization. Total ion current (TIC) normalization corrects for sample-loading variation and works well for global abundance changes; internal standard normalization is more accurate for targeted analysis where specific metabolite concentrations matter. Missing values in a peak table may reflect signal below the detection limit — not true absence — and should be imputed or handled explicitly rather than treated as zero. Failing to account for batch effects across instrument runs is a frequent source of spurious differential metabolites.

LOOK UP DON'T GUESS

  • Metabolite identities: use Metabolite_search and Metabolite_get_info to confirm names, CIDs, and HMDB IDs; never assume identity from m/z alone.
  • Pathway memberships: query KEGG, MetaCyc, or Reactome tools; do not list pathways from memory.
  • Disease associations: retrieve from CTD via Metabolite_get_diseases; do not infer clinical relevance without database evidence.
  • CV thresholds and QC criteria: apply the values defined in this workflow (CV < 30%, blank ratio > 3x); do not override with guesses.

---

When to Use This Skill

Triggers:

  • User has metabolomics data (LC-MS, GC-MS, NMR)
  • Questions about metabolite abundance or concentrations
  • Differential metabolite analysis requests
  • Metabolic pathway analysis
  • Multi-omics integration with metabolomics
  • Metabolic biomarker discovery
  • Flux balance analysis or metabolic modeling
  • Metabolite-enzyme correlation

Example Questions: 1. "Analyze this LC-MS metabolomics data for differential metabolites" 2. "Which metabolic pathways are dysregulated between conditions?" 3. "Identify metabolite biomarkers for disease classification" 4. "Correlate metabolite levels with enzyme expression" 5. "Perform pathway enrichment for differential metabolites" 6. "Integrate metabolomics with transcriptomics data"

---

Core Capabilities

CapabilityDescription
Data ImportLC-MS, GC-MS, NMR, targeted/untargeted platforms
Metabolite IdentificationMatch to HMDB, KEGG, PubChem, spectral libraries
Quality ControlPeak quality, blank subtraction, internal standard normalization
NormalizationProbabilistic quotient, total ion current, internal standards
Statistical AnalysisUnivariate and multivariate (PCA, PLS-DA, OPLS-DA)
Differential AnalysisIdentify significant metabolite changes
Pathway EnrichmentKEGG, Reactome, BioCyc metabolic pathway analysis
Metabolite-Enzyme IntegrationCorrelate with expression data
Flux AnalysisMetabolic flux balance analysis (FBA)
Biomarker DiscoveryMulti-metabolite signatures

---

Workflow Overview

Input: Metabolomics Data (Peak Table or Spectra)
    |
    v
Phase 1: Data Import & Metabolite Identification
    |-- Load peak table or process raw spectra
    |-- Match features to HMDB, KEGG (accurate mass +/- 5 ppm)
    |-- Confidence scoring (Level 1-4)
    |
    v
Phase 2: Quality Control & Filtering
    |-- CV in QC samples (<30%)
    |-- Blank subtraction (sample/blank > 3)
    |-- Remove features with >50% missing
    |
    v
Phase 3: Normalization
    |-- Sample-wise: TIC, PQN, or internal standards
    |-- Transformation: log2, Pareto, or auto-scaling
    |-- Batch effect correction (if multi-batch)
    |
    v
Phase 4: Exploratory Analysis
    |-- PCA for sample clustering
    |-- PLS-DA for supervised separation
    |-- Outlier detection
    |
    v
Phase 5: Differential Analysis
    |-- t-test / ANOVA / Wilcoxon
    |-- Fold change + FDR correction
    |-- Volcano plots, heatmaps
    |
    v
Phase 6: Pathway Analysis
    |-- Metabolite set enrichment (MSEA)
    |-- KEGG/Reactome pathway mapping
    |-- Pathway topology (hub/bottleneck metabolites)
    |
    v
Phase 7: Multi-Omics Integration
    |-- Metabolite-enzyme Spearman correlation
    |-- Pathway-level concordance scoring
    |-- Metabolic flux inference
    |
    v
Phase 8: Generate Report
    |-- Summary statistics, differential metabolites
    |-- Pathway diagrams, biomarker panel

---

Phase Summaries

Phase 1: Data Import & Identification

Load peak tables (CSV/TSV) or process raw spectra (mzML). Match features to HMDB by accurate mass (+/- 5 ppm). Assign confidence levels: L1 (standard match), L2 (MS/MS), L3 (mass only), L4 (unknown).

Phase 2: Quality Control

Assess CV in QC samples (reject >30%), compute blank ratios (keep >3x blank), filter features with >50% missing values. Check internal standard recovery (95-105% acceptable).

Phase 3: Normalization

Three methods available: TIC (simple, assumes similar total abundance), PQN (robust to large changes, recommended), Internal Standard (most accurate with spiked standards). Follow with log2 transform or Pareto scaling.

Phase 4: Exploratory Analysis

PCA reveals sample grouping and batch effects. PLS-DA provides supervised separation (report R2 and Q2 for model quality). Flag and investigate outliers.

Phase 5: Differential Analysis

Welch's t-test (two groups) or ANOVA (multiple groups) with Benjamini-Hochberg FDR correction. Significance thresholds: adj. p < 0.05 and |log2FC| > 1.0.

Phase 6: Pathway Analysis

Map differential metabolites to KEGG compound IDs. Perform MSEA for pathway enrichment. Consider topology: metabolites at pathway hubs (high degree/betweenness centrality) have greater impact.

Phase 7: Multi-Omics Integration

Correlate metabolite levels with enzyme expression (Spearman). Expected: substrate-enzyme negative correlation (consumption), product-enzyme positive correlation (production). Score pathway dysregulation using combined metabolite + gene evidence.

Phase 8: Report

See report_template.md for full example output.

---

Integration with ToolUniverse

SkillUsed ForPhase
tooluniverse-gene-enrichmentPathway enrichmentPhase 6
tooluniverse-rnaseq-deseq2Enzyme expression for integrationPhase 7
tooluniverse-proteomics-analysisProtein levels for integrationPhase 7
tooluniverse-multi-omics-integrationComprehensive integrationPhase 7

---

Quantified Minimums

ComponentRequirement
MetabolitesAt least 50 identified metabolites
ReplicatesAt least 3 per condition
QCCV < 30% in QC samples, blank subtraction
Statistical testt-test or Wilcoxon with FDR correction
Pathway analysisMSEA with KEGG or Reactome
ReportQC, differential metabolites, pathways, visualizations

---

Limitations

  • Identification: Many features remain unidentified (Level 4)
  • Coverage: Cannot detect all metabolites (depends on method)
  • Quantification: Relative abundance (not absolute without standards)
  • Isomers: Difficult to distinguish structural isomers
  • Ion suppression: Matrix effects can affect quantification
  • Dynamic range: Limited compared to targeted methods

---

References

Methods:

  • MetaboAnalyst: https://doi.org/10.1093/nar/gkab382
  • XCMS: https://doi.org/10.1021/ac051437y
  • MSEA: https://doi.org/10.1186/1471-2105-11-395

Databases:

  • HMDB: https://hmdb.ca
  • KEGG Compound: https://www.genome.jp/kegg/compound/
  • Reactome: https://reactome.org

---

Reference Files

  • code_examples.md - Python code for all phases (data loading, QC, normalization, statistics, pathway analysis)
  • report_template.md - Full example report (LC-MS disease vs control)

Related skills

How it compares

Choose this over generic statistical analysis skills when metabolite identification, QC thresholds, and KEGG/Reactome pathway mapping must follow omics-specific conventions.

FAQ

What normalization methods does tooluniverse-metabolomics-analysis support?

tooluniverse-metabolomics-analysis supports TIC, probabilistic quotient normalization (PQN), and internal-standard normalization, followed by log2, Pareto, or auto-scaling transforms. The skill recommends PQN when large abundance shifts are expected and internal standards when ta

What QC filters does the metabolomics skill apply?

tooluniverse-metabolomics-analysis rejects features with QC CV above 30%, requires sample-to-blank ratios above 3x, and removes features with more than 50% missing values. Internal standard recovery between 95% and 105% is treated as acceptable.

Which databases does tooluniverse-metabolomics-analysis query for metabolite IDs?

tooluniverse-metabolomics-analysis looks up metabolite identities via Metabolite_search and Metabolite_get_info, then maps pathways through KEGG, MetaCyc, and Reactome tools. Disease associations are retrieved from CTD rather than inferred from memory.

Data Science & MLanalyticspipelinesetl

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.