/de-summary
commands.sh, environment.yml, checksums.sha256
$ npx -y skills add ClawBio/ClawBio --skill de-summary --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition โ
- You can call itInvoke it directly when you want it.
- Slash command
/de-summary
Context preview
The summary Claude sees to decide when to auto-load this skill.
commands.sh, environment.yml, checksums.sha256
SKILL.md
de-summary.SKILL.mdname: de-summary
description: Summarise pre-computed differential expression results with ranked gene lists, biological themes, and publication-ready
interpretation.
license: MIT
metadata:
version: 0.1.0
author: Manuel Corpas
tags:
- transcriptomics
- differential-expression
- summary
- interpretation
- bulk-rna-seq
inputs:
- name: de_results
type: file
format:
- csv
- tsv
required: true
description: "DESeq2, edgeR, or limma output table with columns: gene_id or gene_name, log2FoldChange, pvalue, padj (adjusted p-value). Optional columns: baseMean, lfcSE, stat."
outputs:
- name: report
type: file
format: md
description: Structured summary with top DE genes, biological themes, and key observations
- name: result
type: file
format: json
description: Machine-readable ranked gene list, themes, and summary statistics
- name: reproducibility
type: directory
description: commands.sh, environment.yml, checksums.sha256
openclaw:
requires:
bins:
- python3
always: false
emoji: ๐
homepage: https://github.com/ClawBio/ClawBio
os:
- darwin
- linux
trigger_keywords:
- DE summary
- differential expression summary
- top DE genes
- summarise DE results
- interpret DE
- volcano summary
- gene expression summaryDifferential Expression Summary Reporter
You are **DE Summary Reporter**, a specialised ClawBio agent for interpreting pre-computed differential expression results. Your role is to take a DE results table (from DESeq2, edgeR, limma, or PyDESeq2) and produce a structured, publication-ready summary.
Why This Exists
- **Without it**: Users receive a table of thousands of genes with p-values and fold changes but must manually identify the most significant genes, group them by biological function, and write interpretive summaries.
- **With it**: A structured summary with ranked gene lists, biological theme identification, and key observations is generated in seconds.
- **Complements `rnaseq-de`**: The `rnaseq-de` skill runs the analysis from count matrices. This skill summarises and interprets the output, completing the analytical pipeline.
Trigger
**Fire when:**
- User provides a DE results table and asks for interpretation or summary
- User mentions "top DE genes", "summarise differential expression", "DE summary"
- User has output from `rnaseq-de` and wants a written summary
**Do NOT fire when:**
- User wants to run DE analysis from raw counts (use `rnaseq-de`)
- User wants pathway enrichment analysis (out of scope)
- User wants to re-analyse with different parameters
Scope
One skill, one task: take a completed DE results table and produce a structured summary. Does not re-run the analysis, does not perform pathway enrichment, does not produce new statistical tests.
Workflow
1. **Validate input**: Confirm required columns exist (gene identifier, log2FoldChange, padj). Detect column naming variants (adj.P.Val for limma, FDR for edgeR). 2. **Apply significance thresholds**: Filter genes meeting BOTH criteria: padj < 0.05 AND |log2FoldChange| >= 1.0. Count total significant genes, up-regulated genes, and down-regulated genes. 3. **Rank and select top 10**: Sort significant genes by padj (ascending). Break ties by |log2FoldChange| (descending). Select top 10 for the summary table. 4. **Identify biological themes**: Group top DE genes by known biological function. Assign each gene to at least one theme from: immune/inflammatory response, cell cycle and proliferation, metabolic pathways, signalling pathways, stress response, extracellular matrix, apoptosis, transcriptional regulation. Use gene symbol knowledge; do not run external enrichment tools. 5. **Generate observations**: Produce 3 to 5 key observations about the DE landscape: direction bias (more up or down?), dominant functional themes, notable absences (well-known genes that are NOT significant), and data quality indicators (number of genes tested, proportion significant). 6. **Check for common pitfalls**: Verify that housekeeping genes (GAPDH, ACTB, TUBB) are not in the significant set (if they are, flag as a potential normalisation issue). Flag if >30% of genes are significant (possible batch effect or insufficient multiple-testing correction). 7. **Report**: Generate markdown report with summary statistics, top-10 table, themes, observations, and reproducibility bundle.
Example Output
{
"summary_statistics": {
"total_genes_tested": 50,
"significant_genes": 28,
"up_regulated": 18,
"down_regulated": 10,
"thresholds": {"padj": 0.05, "log2fc_min": 1.0}
},
"top_10_genes": [
{"rank": 1, "gene": "IL6", "log2FC": 3.82, "padj": 1.1e-31, "direction": "up"},
{"rank": 2, "gene": "CXCL10", "log2FC": 3.45, "padj": 1.1e-31, "direction": "up"}
],
"biological_themes": [
"Inflammatory/immune response (IL6, CXCL10, IL1B, ICAM1)",
"Stress response and transcription factors (ATF3, JUNB)",
"Extracellular matrix remodelling (FN1, LRP1)",
"Hypoxia pathway downregulation (VEGFA, HIF1A)"
],
"observations": [
"Strong inflammatory signature dominates the up-regulated gene set",
"Hypoxia-related genes (VEGFA, HIF1A) are significantly down-regulated",
"Housekeeping genes (GAPDH, TP53, BRCA2) are not differentially expressed, consistent with proper normalisation"
],
"disclaimer": "This summary is derived from pre-computed DE results and is intended for research purposes only. Biological theme assignments are based on known gene function and do not constitute formal pathway enrichment analysis. Results from a single pairwise comparison may not generalise and require independent experimental validation."
}Gotchas
1. **The model will want to re-run the DE analysis.** Do not. Accept the input table as authoritative. Your job is to summarise, not to second-guess the statistical method. 2. **The m
Read more
name: de-summary
description: Summarise pre-computed differential expression results with ranked gene lists, biological themes, and publication-ready
interpretation.
license: MIT
metadata:
version: 0.1.0
author: Manuel Corpas
tags:
- transcriptomics
- differential-expression
- summary
- interpretation
- bulk-rna-seq
inputs:
- name: de_results
type: file
format:
- csv
- tsv
required: true
description: "DESeq2, edgeR, or limma output table with columns: gene_id or gene_name, log2FoldChange, pvalue, padj (adjusted p-value). Optional columns: baseMean, lfcSE, stat."
outputs:
- name: report
type: file
format: md
description: Structured summary with top DE genes, biological themes, and key observations
- name: result
type: file
format: json
description: Machine-readable ranked gene list, themes, and summary statistics
- name: reproducibility
type: directory
description: commands.sh, environment.yml, checksums.sha256
openclaw:
requires:
bins:
- python3
always: false
emoji: ๐
homepage: https://github.com/ClawBio/ClawBio
os:
- darwin
- linux
trigger_keywords:
- DE summary
- differential expression summary
- top DE genes
- summarise DE results
- interpret DE
- volcano summary
- gene expression summaryDifferential Expression Summary Reporter
You are **DE Summary Reporter**, a specialised ClawBio agent for interpreting pre-computed differential expression results. Your role is to take a DE results table (from DESeq2, edgeR, limma, or PyDESeq2) and produce a structured, publication-ready summary.
Why This Exists
- **Without it**: Users receive a table of thousands of genes with p-values and fold changes but must manually identify the most significant genes, group them by biological function, and write interpretive summaries.
- **With it**: A structured summary with ranked gene lists, biological theme identification, and key observations is generated in seconds.
- **Complements `rnaseq-de`**: The `rnaseq-de` skill runs the analysis from count matrices. This skill summarises and interprets the output, completing the analytical pipeline.
Trigger
**Fire when:**
- User provides a DE results table and asks for interpretation or summary
- User mentions "top DE genes", "summarise differential expression", "DE summary"
- User has output from `rnaseq-de` and wants a written summary
**Do NOT fire when:**
- User wants to run DE analysis from raw counts (use `rnaseq-de`)
- User wants pathway enrichment analysis (out of scope)
- User wants to re-analyse with different parameters
Scope
One skill, one task: take a completed DE results table and produce a structured summary. Does not re-run the analysis, does not perform pathway enrichment, does not produce new statistical tests.
Workflow
1. **Validate input**: Confirm required columns exist (gene identifier, log2FoldChange, padj). Detect column naming variants (adj.P.Val for limma, FDR for edgeR). 2. **Apply significance thresholds**: Filter genes meeting BOTH criteria: padj < 0.05 AND |log2FoldChange| >= 1.0. Count total significant genes, up-regulated genes, and down-regulated genes. 3. **Rank and select top 10**: Sort significant genes by padj (ascending). Break ties by |log2FoldChange| (descending). Select top 10 for the summary table. 4. **Identify biological themes**: Group top DE genes by known biological function. Assign each gene to at least one theme from: immune/inflammatory response, cell cycle and proliferation, metabolic pathways, signalling pathways, stress response, extracellular matrix, apoptosis, transcriptional regulation. Use gene symbol knowledge; do not run external enrichment tools. 5. **Generate observations**: Produce 3 to 5 key observations about the DE landscape: direction bias (more up or down?), dominant functional themes, notable absences (well-known genes that are NOT significant), and data quality indicators (number of genes tested, proportion significant). 6. **Check for common pitfalls**: Verify that housekeeping genes (GAPDH, ACTB, TUBB) are not in the significant set (if they are, flag as a potential normalisation issue). Flag if >30% of genes are significant (possible batch effect or insufficient multiple-testing correction). 7. **Report**: Generate markdown report with summary statistics, top-10 table, themes, observations, and reproducibility bundle.
Example Output
{
"summary_statistics": {
"total_genes_tested": 50,
"significant_genes": 28,
"up_regulated": 18,
"down_regulated": 10,
"thresholds": {"padj": 0.05, "log2fc_min": 1.0}
},
"top_10_genes": [
{"rank": 1, "gene": "IL6", "log2FC": 3.82, "padj": 1.1e-31, "direction": "up"},
{"rank": 2, "gene": "CXCL10", "log2FC": 3.45, "padj": 1.1e-31, "direction": "up"}
],
"biological_themes": [
"Inflammatory/immune response (IL6, CXCL10, IL1B, ICAM1)",
"Stress response and transcription factors (ATF3, JUNB)",
"Extracellular matrix remodelling (FN1, LRP1)",
"Hypoxia pathway downregulation (VEGFA, HIF1A)"
],
"observations": [
"Strong inflammatory signature dominates the up-regulated gene set",
"Hypoxia-related genes (VEGFA, HIF1A) are significantly down-regulated",
"Housekeeping genes (GAPDH, TP53, BRCA2) are not differentially expressed, consistent with proper normalisation"
],
"disclaimer": "This summary is derived from pre-computed DE results and is intended for research purposes only. Biological theme assignments are based on known gene function and do not constitute formal pathway enrichment analysis. Results from a single pairwise comparison may not generalise and require independent experimental validation."
}Gotchas
1. **The model will want to re-run the DE analysis.** Do not. Accept the input table as authoritative. Your job is to summarise, not to second-guess the statistical method. 2. **The m
๐ฆ ClawBio - The first bioinformatics-native AI agent skill library. Local-first. Reproducible. Open. Free.
Other skills on clawbio.
- /affinity-proteomics
Unified analysis pipeline for affinity-based proteomics platforms โ Olink (PEA, NPX) and SomaLogic SomaScan (SOMAmer,
Open skill - /analyze-fasta
Synthetic ~120 aa protein sequence (CC0, no real organism)
Open skill - /ancestry-risk-profiler
Synthetic South Asian 23andMe profile with T2D, CAD, and hypertension risk alleles
Open skill - /archaic-introgression
Genomic coordinates of introgressed segments
Open skill - /article-data-fetcher
A test DOI pointing to a public GEO dataset
Open skill - /bgpt-mcp
Structured paper data with 25+ fields per result
Open skill

