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/mannlabs/proteomics-agent-skills/imputing_proteomics_datanpx skills add MannLabs/proteomics-agent-skills --skill imputing_proteomics_datagit clone --depth 1 https://github.com/MannLabs/proteomics-agent-skillsWrote 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/mannlabs/proteomics-agent-skills/imputing_proteomics_data)<a href="https://agentmods.dev/skills/mannlabs/proteomics-agent-skills/imputing_proteomics_data"><img src="https://agentmods.dev/badge/skills/mannlabs/proteomics-agent-skills/imputing_proteomics_data.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.00078 | $0.00770 |
| Opus 5 | $0.00039 | $0.00385 |
| Sonnet 5 | $0.00016 | $0.00154 |
| Haiku 4.5 | $0.00008 | $0.00077 |
Grade A, and why
imputing-proteomics-data 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 5d 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 — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Imputing Proteomics Data
Impute missing values in protein intensity matrices for downstream analysis requiring complete data.
When to Impute
Impute when:
- Downstream analysis requires complete data (e.g. PCA, COMBAT batch correction)
- Missingness rate is moderate (<30-50% per feature)
Do NOT impute when:
- Downstream methods handle missing data natively (mixed-effects models, limma)
- Feature missingness is high - instead remove highly missing features with low data support.
Key missingness patterns
- MNAR (Missing Not At Random): Low-abundance proteins below detection limit. Shows correlation between intensity and missingness.
- MAR (Missing At Random): Ion suppression, peptide competition. More common in DDA.
- MCAR (Missing Completely At Random): Stochastic dropouts. Random pattern.
Imputation Workflow
Copy this checklist and track progress:
Analysis step progress:
- [ ] **Prepare data**
- [ ] **Assess** missingness patterns
- [ ] **Select** method
- [ ] **Apply imputation**
- [ ] **Validate** imputation quality
If quality criteria not met: Restart at step `assess`
Workflow
Prepare data
Remove features with high missingness before imputation due to little data support. For typical datasets, features with <50% completeness should be removed. Assess missingness within biological groups, not globally. For example, a cell-type marker "missing" in 90% of cells but present in 100% of that cell type is informative.
Ensure that data is log-transformed data if not already as most methods assume log-scale.
Assess missingness patterns
Before imputation, assess missingness patterns.
Calculate missingness rates per feature.
Visualize intensity vs missingness. If missingness is higher for features with low intensity, this corresponds to a MNAR patterns. If the missingness is roughly independent, this corresponds to an MCAR or MAR pattern.
Method Selection
Rationale: Prefer methods that consider the global data structure over methods that only consider local structure over methods that provide a single point estimate for all samples.
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.
- 5d ago First seen · 83 lines · 78 tokens per session scan A c6870c93ca3f
imputing-proteomics-data is a skill published in the GitHub repository MannLabs/proteomics-agent-skills (14 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 78 tokens to every session and 770 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
proteomics-quantification
Load when computing per-protein abundance from a peptide / PSM table via LFQ (intensity summation), iBAQ (intensity / tryptic peptide count), or spectral counting (PSMs per protein). Skip when the input is already protein-level (use proteomics-ms-qc); label-based TMT / iTRAQ workflows (search upstream first).
proteomics-structural
Load when summarising cross-linking MS (XL-MS) results — intra/inter-protein link split, optional FDR filtering, distance-constraint validation against a per-crosslinker (DSS / BS3 / EDC / DSSO / DSBU) max distance. Skip when raw spectra are the input (run XlinkX / pLink / xiSEARCH first); no XL-MS experiment was…
proteomics-data-import
Load when ingesting a MaxQuant proteinGroups.txt, FragPipe combinedprotein.tsv, DIA-NN report, or generic CSV / TSV protein-quantification table — normalises columns to a standard schema, emits tables/proteins.csv. Skip when raw spectra are the input (run the search engine first); the file is already OmicsClaw schema.
proteomics-de
Load when computing two-group differential protein abundance (group2 vs group1, log2FC + p-value + BH-adjusted FDR) via Welch t-test, equal-variance t-test, or Mann-Whitney on a wide protein × sample CSV. Skip when you need multi-condition DE (run pairwise contrasts manually); label-based TMT linear-mixed models.
proteomics-enrichment
Load when running over-representation analysis (ORA) on a list of proteins via Fisher's exact test against a built-in 8-pathway DEMO dictionary, with BH-FDR correction. Skip when needing a real pathway database (this skill is demo-only) (use bulkrna-enrichment); rank-based GSEA.
proteomics-identification
Load when summarising peptide identifications (PSM count, unique peptide count, distinct protein count, score / charge distributions) from a peptide-level CSV produced by MaxQuant / FragPipe / DIA-NN. Skip when raw spectra are the input (run a search engine first); working with protein-quantification tables (use…