Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

De Summary

ASecurity

Summarise pre-computed differential expression results with ranked gene lists, biological themes, and publication-ready

17 stars
0 votes
0 copies
3 views
Added 9/4/2026
datapythongoexpresstestinggit

Works with

cli

Security Analysis

A100/100

Scanned 9/4/2026

Install to Claude Code

$npx -y skills add gabrielmoreira/agent-skills-mirror --skill de-summary --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of De Summary?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for De Summary
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/gabrielmoreira-de-summary-agent-skills-mirror/badge)](https://www.skillsdirectory.com/skills/gabrielmoreira-de-summary-agent-skills-mirror)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
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 summary
---

# Differential 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

```json
{
  "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 model will want to run pathway enrichment (GO, KEGG).** Do not. Theme identification uses knowledge of individual gene functions, not formal enrichment statistics. If the user wants enrichment, recommend a dedicated tool.
3. **The model will want to include non-significant genes in the top-10.** Do not. Apply both the padj and log2FC thresholds strictly. Genes failing either criterion must not appear in the ranked list.
4. **The model will confuse low padj with high significance.** Remember: lower padj = more significant. Sort ascending.
5. **The model will ignore direction.** Always report whether each gene is up-regulated or down-regulated. A summary that omits direction is incomplete.

## Safety

- This skill produces research-level summaries, not clinical reports.
- Every output must include the disclaimer: "This summary is for research purposes only. Results require independent experimental validation."
- Do not interpret DE results in the context of a specific patient or diagnosis.
- Do not claim that DE results establish causation.
- Include the ClawBio medical disclaimer.

## Agent Boundary

- **Agent dispatches and explains; skill executes.**
- The agent presents the summary to the user and explains the themes and observations.
- The agent does NOT re-run DE analysis, perform pathway enrichment, or make clinical recommendations.

## Chaining Partners

- `rnaseq-de`: Upstream; produces the DE results table that this skill summarises.
- `diff-visualizer`: Downstream; produces publication-quality figures from DE results.
- `lit-synthesizer`: Downstream; literature context for top DE genes.
- `pubmed-summariser`: Downstream; PubMed search for genes of interest.

## Maintenance

- Review cadence: quarterly (gene function annotations evolve slowly).
- Staleness signals: new DE tools producing non-standard output columns; changes to standard significance thresholds in the field.
- Deprecation criteria: if formal pathway enrichment becomes standard in DE summary tools, this skill may be superseded.

Attribution

gabrielmoreiragabrielmoreira
View sourceMore from gabrielmoreira →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Rank Tracker

This skill helps you track, analyze, and report on keyword ranking positions over time. It monitors both traditional SERP rankings and AI/GEO visibility to provide comprehensive search performance insights.

1821 votes

Youtube Competitor Analyzer

Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...

31 votes

Twitter Algorithm Optimizer

Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content.

742580 votes

Weather Fetcher

Instructions for fetching current weather temperature data for Karachi, Pakistan from wttr.in API

662660 votes

Weather

Get current weather and forecasts (no API key required).

484900 votes
View all in data →