gene-protein-expression-matrix-normalization

gene-protein-expression-matrix-normalization is a skill for Claude Code, Codex from aipoch/medical-research-skills. It costs 63 tokens per session (1,478 once invoked), scanned A, original, MIT.

A workflow for rescaling bulk gene or protein expression tables using log2 transformation, z-score standardization, or min-max scaling. These methods put numeric measurements into more comparable ranges before analysis.

In plain words
What is it for?
Use it to normalize a clean expression matrix with one of the three supported methods before visualization or exploratory analysis.
Why use it?
It prepares expression values for plots, clustering, or exploratory comparisons without applying count-specific methods such as TPM or DESeq2 normalization.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to normalize a clean expression matrix with one of the three supported methods before visualization or exploratory analysis.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aipoch/medical-research-skills/gene-protein-expression-matrix-normalization
About the project

Medical Research Agent Skills is a library of agent instructions for medical and biomedical research, covering evidence analysis, study protocol design, data analysis, and academic writing. Researchers use it to guide compatible coding agents through common scientific workflows. The catalogue contains many of the library's skills and commands.

aipoch/medical-research-skills · 1,860 stars · on GitHub · aipoch.com

Install

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.

Any agent
npx skills add aipoch/medical-research-skills --skill gene-protein-expression-matrix-normalization
Clone the repo
git clone --depth 1 https://github.com/aipoch/medical-research-skills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for gene-protein-expression-matrix-normalization

README.md
[![agentmods](https://agentmods.dev/badge/skills/aipoch/medical-research-skills/gene-protein-expression-matrix-normalization/github.svg)](https://agentmods.dev/skills/aipoch/medical-research-skills/gene-protein-expression-matrix-normalization)
Your own site
<a href="https://agentmods.dev/skills/aipoch/medical-research-skills/gene-protein-expression-matrix-normalization"><img src="https://agentmods.dev/badge/skills/aipoch/medical-research-skills/gene-protein-expression-matrix-normalization/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gene-protein-expression-matrix-normalization

Your own site · 80×15
<a href="https://agentmods.dev/skills/aipoch/medical-research-skills/gene-protein-expression-matrix-normalization"><img src="https://agentmods.dev/badge/skills/aipoch/medical-research-skills/gene-protein-expression-matrix-normalization.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,478 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00063 $0.01478
Opus 5 $0.00032 $0.00739
Sonnet 5 $0.00013 $0.00296
Haiku 4.5 $0.00006 $0.00148

Measured 12d ago against content hash 3bbd38a0c1a3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

gene-protein-expression-matrix-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 12d 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.

awesome-med-research-skills/Data Analysis/gene-protein-expression-matrix-normalization/SKILL.md · 148 lines

How it starts

The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Source: https://github.com/aipoch/medical-research-skills

Gene Protein Expression Matrix Normalization

When to Use

Use this skill when the user wants to normalize a numeric expression matrix before plotting, clustering, or exploratory comparison.

Typical requests:

  • "Normalize this gene expression matrix with log2"
  • "Do z-score scaling across samples"
  • "Map protein abundance values into 0 to 1"

When Not to Use

Do not use this skill for:

  • Count-model normalization such as CPM, TPM, TMM, or DESeq2 size factors
  • Batch correction or covariate adjustment
  • Single-cell preprocessing workflows
  • Matrices that contain missing, Inf, or NaN values unless they are cleaned first

When to Read External Files

When executing the analysis, run:

Rscript scripts/main.R --input_file <matrix.csv> --output_dir <output_dir> --method <log2|zscore|minmax>
Situation File to Read Purpose
Need to execute the workflow scripts/main.R CLI entry point
Need algorithm details references/algorithm.md Method definitions and assumptions
Encounter an error references/troubleshooting.md Standard error codes and fixes
Need examples or baseline run details references/cli-guide.md Ready-to-run commands and test record
Need dependency declarations DESCRIPTION Runtime package list

Usage

Rscript scripts/main.R \
  --input_file tests/data/expression_matrix.csv \
  --output_dir ./output \
  --method log2 \
  --pseudo_count 1 \
  --seed 42

Arguments

Short Long Type Default Description
-i --input_file file required Expression matrix in CSV or TSV format
-o --output_dir dir ./output Output directory
-m --method string log2 Normalization method: log2, zscore, minmax
-r --margin string column Apply normalization by row or column
-p --pseudo_count numeric 1 Added before log2 transformation
-c --center boolean true Center values for z-score
-s --scale_values boolean true Scale values for z-score
-t --timeout_seconds integer 0 Optional timeout; 0 disables it
-d --delimiter string auto Input delimiter: auto, csv, or tsv
--seed integer 42 Random seed
--verbose boolean true Print progress logs

Read the full file on GitHub · 148 lines

Changes

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.

  1. 12d ago First seen · 148 lines · 63 tokens per session scan A 3bbd38a0c1a3

Subscribe to this mod's changes

gene-protein-expression-matrix-normalization is a skill published in the GitHub repository aipoch/medical-research-skills (1,860 stars, last pushed 1mo ago), licensed MIT. It adds 63 tokens to every session and 1,478 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

fragment-based-count-matrix-generation

Use when you have a backed AnnData object containing processed fragment data (stored in .obsm['fragmentpaired'] or .

HolobiomicsLab/asb-skill-collections · 33 tokens

methylbase-object-handling

Use when after reading in per-sample methylation call files with methRead() and obtaining methylRawList objects, but before calculating differential methylation or performing annotation.

HolobiomicsLab/asb-skill-collections · 40 tokens

motif-annotation-correlation-analysis

Use when you have a chromVARDeviations object with multiple annotation sets (such as JASPAR motifs and kmers) and need to determine which annotation pairs are redundant (high correlation) versus synergistic (high synergy z-scores).

HolobiomicsLab/asb-skill-collections · 57 tokens

motif-database-query-and-matching

Use when you have a set of differentially accessible peaks (output from differential accessibility testing, e.g., tl.

HolobiomicsLab/asb-skill-collections · 32 tokens

motif-enrichment-statistical-testing

Use when after identifying a set of differentially accessible peaks (via tl.difftest or equivalent), when you need to infer which transcription factors may regulate the observed chromatin state changes.

HolobiomicsLab/asb-skill-collections · 44 tokens

motif-peak-overlap-matching

Use when you have a filtered set of non-overlapping peaks from ATAC-seq data and a collection of motifs (typically from JASPAR or similar databases), and you need to identify which peaks contain matches to which motifs as a prerequisite for computing motif-based deviation scores across samples.

HolobiomicsLab/asb-skill-collections · 66 tokens