--> --- name: bio-metabolomics-quantification description: Feature quantification, missing value imputation, and normalization for metabolomics data. tool_type: mixed primary_tool: metabolomics measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes. allowed-tools: - read_file - run_shell_command --- Feature quantification with missing value imputation (min/median/KNN) and normalization (TIC/median/log).
Scanned 9/7/2026
Install to Claude Code
npx -y skills add mdbabumiamssm/LLMs-Universal-Life-Science-and-Clinical-Skills- --skill metabolomics-quantification --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Metabolomics Quantification?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/mdbabumiamssm-metabolomics-quantification-llms-universal-life-science-an)More formats (shields.io, HTML) on the badges page.
<!--
# COPYRIGHT NOTICE
# This file is part of the "Universal Biomedical Skills" project.
# Copyright (c) 2026 MD BABU MIA, PhD <md.babu.mia@mssm.edu>
# All Rights Reserved.
#
# This code is proprietary and confidential.
# Unauthorized copying of this file, via any medium is strictly prohibited.
#
# Provenance: Authenticated by MD BABU MIA
-->
---
name: bio-metabolomics-quantification
description: Feature quantification, missing value imputation, and normalization for
metabolomics data.
tool_type: mixed
primary_tool: metabolomics
measurable_outcome: Execute skill workflow successfully with valid output within 15
minutes.
allowed-tools:
- read_file
- run_shell_command
---
# 📏 Metabolomics Quantification
Feature quantification with missing value imputation (min/median/KNN) and normalization (TIC/median/log).
## CLI Reference
```bash
python omicsclaw.py run met-quantify --demo
python omicsclaw.py run met-quantify --input <features.csv> --output <dir>
```
## Parameters
| Parameter | Default | Description |
|-----------|---------|-------------|
| `--impute` | `min` | min, median, or knn |
| `--normalize` | `tic` | tic, median, or log |
## Why This Exists
- **Without it**: Downstream models crash when encountering missing LC/MS peak values
- **With it**: Recovers matrix completeness via K-Nearest Neighbors (KNN) or Median Imputation
- **Why OmicsClaw**: Centralized, reproducible preprocessing steps tailored for sparse metabolomic data
## Workflow
1. **Calculate**: Assess inherent missing value distributions per feature.
2. **Execute**: Impute empty values using the user-defined algorithm (KNN, Min, Median).
3. **Assess**: Apply normalization logic (TIC, MAD) to align global gradients.
4. **Generate**: Output structural completed data matrices.
5. **Report**: Produce imputation QC boxplots before and after correction.
## Example Queries
- "Impute missing values using KNN"
- "Normalize this feature table with TIC"
## Output Structure
```
output_directory/
├── report.md
├── result.json
├── quantified.csv
├── figures/
│ └── imputation_boxplot.png
├── tables/
│ └── imputed_matrix.csv
└── reproducibility/
├── commands.sh
├── environment.yml
└── checksums.sha256
```
## Safety
- **Local-first**: Strict offline processing without external upload.
- **Disclaimer**: Requires OmicsClaw reporting structures and disclaimers.
- **Audit trail**: Hyperparameters and operational flow states are logged fully.
## Integration with Orchestrator
**Trigger conditions**:
- Automatically invoked dynamically based on tool metadata and user intent matching.
**Chaining partners**:
- `peak-detection` — Upstream raw data matrix creation
- `met-diff` — Downstream univariate/multivariate testing
## Citations
- [NOREVA](https://doi.org/10.1093/nar/gkx449) — normalization evaluation
<!-- AUTHOR_SIGNATURE: 9a7f3c2e-MD-BABU-MIA-2026-MSSM-SECURE -->Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!