Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/tiangzlab/omicsclaw/metabolomics-normalizationnpx skills add TianGzlab/OmicsClaw --skill metabolomics-normalizationgit clone --depth 1 https://github.com/TianGzlab/OmicsClawWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/tiangzlab/omicsclaw/metabolomics-normalization)<a href="https://agentmods.dev/skills/tiangzlab/omicsclaw/metabolomics-normalization"><img src="https://agentmods.dev/badge/skills/tiangzlab/omicsclaw/metabolomics-normalization.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00071 | $0.01080 |
| Opus 5 | $0.00036 | $0.00540 |
| Sonnet 5 | $0.00014 | $0.00216 |
| Haiku 4.5 | $0.00007 | $0.00108 |
Grade A, and why
metabolomics-normalization scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.
metabolomics-normalization
When to use
The user has a feature × sample metabolomics intensity table and wants normalisation only (no imputation). Five methods:
median(default) — divide each sample by its median.quantile— quantile normalisation across samples.total— divide by per-sample total (TIC).pqn— Probabilistic Quotient Normalisation (Dieterle 2006).log— log2(x+1) per-cell.
For combined imputation + normalisation use metabolomics-quantification.
Inputs & Outputs
Inputs
- File types:
.csv - Accepts artifact
metabolomics.peak_table(csv)
Outputs
tables/normalized.csvreport.mdresult.json- Produces artifact
metabolomics.feature_matrixastables/normalized.csv(csv)
Flow
- Load CSV (
--input <features.csv>) or generate a demo (--demo). - Dispatch on
--method; reject unknown viaValueError("Unknown method: {method}. Choose from {SUPPORTED_METHODS}")atmetabolomics_normalization.py:151. - Apply the chosen normalisation; write
tables/normalized.csv(metabolomics_normalization.py:258) +report.md+result.json.
Gotchas
--methodchoices are exact:median/quantile/total/pqn/log.metabolomics_normalization.py:36definesSUPPORTED_METHODS. Aliases liketic(=total) are NOT accepted — passtotalexplicitly. (Note: siblingmetabolomics-quantificationacceptsticas a normalize choice; the two skills' vocabularies differ.)--inputREQUIRED unless--demo.metabolomics_normalization.py:248raisesValueError("--input required when not using --demo").pqnrequires non-zero reference values. Probabilistic Quotient Normalisation divides by per-feature reference (median sample); features with all zeros yield NaN quotients. Pre-filter zero-prevalent features.logislog2(x+1). Negative values raise / propagate NaN. Pre-clip upstream.- No imputation is performed. NaN values pass through normalisation untouched (most methods skipna;
quantilemay NaN-propagate). Pre-impute withmetabolomics-quantificationif NaNs are problematic. - Method-specific behaviour with NaN may differ.
median/totalusenp.nanmedian/np.nansum;quantilemay collapse rows with NaN;pqnexpects all-numeric.
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 95 lines · 71 tokens per session scan A 28b57459b685
metabolomics-normalization is a skill published in the GitHub repository TianGzlab/OmicsClaw (160 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 71 tokens to every session and 1,080 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
data-export-pdf
Create professional PDF reports with text, tables, and embedded images using reportlab. Works with ANY LLM provider (GPT, Gemini, Claude, etc.).
data-io-loading
OmicVerse data I/O: use ov.read(), ov.io.readh5ad, read10xh5, read10xmtx, readvisium, readvisiumhd, readnanostring instead of scanpy. Covers h5ad, 10x, spatial, CSV formats.
data-export-excel
Export analysis results, data tables, and formatted spreadsheets to Excel files using openpyxl. Works with ANY LLM provider (GPT, Gemini, Claude, etc.).
doc-translator
将 PDF 格式或 Web Page 格式的源文档转换成保持原排版格式的 Markdown 格式精译中文文档。.
batch-processor
Manage large document processing by splitting into batches and coordinating the full translation workflow (extraction, translation, formatting). Use when handling documents larger than 30 pages, 60 paragraphs, or 6000 words.
pdf-reader
Extract text, images, tables, and formulas from PDF documents and convert them to Markdown format while preserving original structure. Use when processing PDF files, extracting content, or converting PDF to Markdown.