jpskill.com
🛠️ 開発・MCP コミュニティ 🔴 エンジニア向け 👤 エンジニア・AI開発者

🛠️ De Summary

de-summary

遺伝子発現解析の結果から、重要な遺伝子リストや生物学的テーマ、論文に使える解釈を自動で要約するSkill。

⏱ テスト計画作成 2時間 → 20分

📺 まず動画で見る(YouTube)

▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

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

🇯🇵 日本人クリエイター向け解説

一言でいうと

遺伝子発現解析の結果から、重要な遺伝子リストや生物学的テーマ、論文に使える解釈を自動で要約するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • De Summary を使って、最小構成のサンプルコードを示して
  • De Summary の主な使い方と注意点を教えて
  • De Summary を既存プロジェクトに組み込む方法を教えて

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

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

{
  "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.