limma

limma is a skill for Claude Code, Codex from LeoLin990405/r-analytics-skill. It costs 23 tokens per session (547 once invoked), scanned A, original, MIT.

An R package for analysing microarray and RNA-seq data, which measure gene activity in biological samples, with statistical linear models.

In plain words
What is it for?
Use it to process microarray data or RNA-seq counts, fit comparisons such as treatment versus control, find statistically significant genes, and create common plots.
Why use it?
It provides a documented workflow for correcting and normalising measurements, comparing treatment groups, and identifying genes whose activity differs. It helps avoid assembling these analysis steps from unrelated tools.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/leolin990405/r-analytics-skill/limma
Any agent
npx skills add LeoLin990405/r-analytics-skill --skill limma
Clone the repo
git clone --depth 1 https://github.com/LeoLin990405/r-analytics-skill

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 limma

README.md
[![agentmods](https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/limma.svg)](https://agentmods.dev/skills/leolin990405/r-analytics-skill/limma)
Your own site
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/limma"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/limma.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 547 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00023 $0.00547
Opus 5 $0.00012 $0.00273
Sonnet 5 $0.00005 $0.00109
Haiku 4.5 $0.00002 $0.00055

Measured 6d ago against content hash 4e92e2ff1e2f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

limma 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 6d 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.

sub-skills/r-bio/r-bio-rnaseq/limma/SKILL.md · 104 lines

What it actually says

limma Package

Linear models for microarray and RNA-seq data.

Microarray Workflow

library(limma)

# Read data
targets <- readTargets("targets.txt")
eset <- read.maimages(targets, source = "agilent")

# Background correction
eset <- backgroundCorrect(eset, method = "normexp")

# Normalize
eset <- normalizeBetweenArrays(eset, method = "quantile")

# Average duplicates
eset <- avereps(eset, ID = eset$genes$ProbeName)

RNA-seq with voom

library(limma)
library(edgeR)

# Create DGEList
dge <- DGEList(counts = counts)
dge <- calcNormFactors(dge)

# Design matrix
design <- model.matrix(~0 + group)

# voom transformation
v <- voom(dge, design, plot = TRUE)

# Fit linear model
fit <- lmFit(v, design)

# Contrasts
contrast <- makeContrasts(Treatment - Control, levels = design)
fit2 <- contrasts.fit(fit, contrast)
fit2 <- eBayes(fit2)

# Results
topTable(fit2, coef = 1, n = Inf)

Results

# Top genes
results <- topTable(fit2, coef = 1, n = Inf)

# Significant genes
sig <- results[results$adj.P.Val < 0.05, ]

# Decide tests
dt <- decideTests(fit2)
summary(dt)

Visualization

# Volcano plot
volcanoplot(fit2, coef = 1, highlight = 10)

# MA plot
plotMA(fit2)

# Venn diagram
vennDiagram(dt)

# Heatmap of top genes
heatmap(v$E[rownames(sig)[1:50], ])

Multiple Comparisons

contrast <- makeContrasts(
  TrtA_vs_Ctrl = TreatmentA - Control,
  TrtB_vs_Ctrl = TreatmentB - Control,
  TrtA_vs_TrtB = TreatmentA - TreatmentB,
  levels = design
)

fit2 <- contrasts.fit(fit, contrast)
fit2 <- eBayes(fit2)

# Results for each contrast
topTable(fit2, coef = "TrtA_vs_Ctrl")
topTable(fit2, coef = "TrtB_vs_Ctrl")
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. 6d ago First seen · 104 lines · 23 tokens per session scan A 4e92e2ff1e2f

Subscribe to this mod's changes

limma is a skill published in the GitHub repository LeoLin990405/r-analytics-skill (5 stars, last pushed 5mo ago), licensed MIT. It adds 23 tokens to every session and 547 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

agentic-delegation

Delegate exploration sweeps to Haiku subagents and bulk writing to Sonnet subagents while the orchestrator keeps architecture, security-sensitive edits, and commits; use at the start of any multi-step task in this repo to minimize token spend by delegating to cheaper models.

VincentChuWaiChow/vanguard-frontier-agentic · 60 tokens

aws-non-destructive-task-automation-advisor

Design AWS non-destructive task automation using EventBridge, Step Functions, Lambda, Systems Manager Automation, SNS, SQS, approvals, notifications, reporting, and evidence gathering. Use only for read-only or coordination-safe automation; do not use for destructive remediation or mutation-heavy runbooks.

VincentChuWaiChow/vanguard-frontier-agentic · 68 tokens

telegram

The only Telegram skill your AI agent needs. Read messages, parse channels, download and transcribe voice notes — all via Telethon user API. One session file, zero bots. Use when user says 'read telegram', 'check saved messages', 'fetch from telegram', 'parse channel', 'transcribe voice', 'telegram search', 'check my…

awrshift/skill-telegram · 143 tokens

fused-integrations

Reference for using Fused's built-in integration connections inside UDFs. Covers data sources (Snowflake, BigQuery, GCS, S3, Airtable, Notion, Google Drive), compute/inference providers (Modal, Hugging Face, Baseten, Daytona, ComfyOrg, Slack), and LLM providers (Anthropic, OpenAI) — the fused.api connect helpers…

fusedio/skills · 126 tokens

canvas-comments

Use when a Fused canvas.toml contains (or needs) a [[comments]] block — e.g. the user asks to check/fix/resolve canvas comments, review feedback pins on a canvas, or leave comments on a canvas for someone else. Covers reading, writing, and resolving comments via the fused CLI pull/push workflow.

fusedio/skills · 71 tokens

close-cycle-advisor

Multi-jurisdiction financial close cycle reference framework covering month-end, quarter-end, and year-end close. Provides regulatory filing deadlines by jurisdiction (SEC, EU TD, UK DTR, TSE/FSA, CSRC, SEBI, ASX, HKEX), record-to-report process steps, reconciliation standards, intercompany elimination requirements…

VincentChuWaiChow/vanguard-frontier-agentic · 154 tokens