بنقرة واحدة
de-summary
// Summarise pre-computed differential expression results with ranked gene lists, biological themes, and publication-ready interpretation.
// Summarise pre-computed differential expression results with ranked gene lists, biological themes, and publication-ready interpretation.
Render a 4-panel regional LocusCompare diagnostic for one (lead variant, exposure study, outcome study) tuple - overlays GWAS Manhattan, QTL Manhattan, GENCODE gene track, and cross-trait scatter colored by LD r². Use when an agent needs visual confirmation that two GWAS / QTL signals share the same causal variant (the Liu 2019 LocusCompare convention). Inputs: lead variant + two pre-fetched harmonised sumstats slices (or eQTL Catalogue / GWAS Catalog identifiers for bundled fetch). Output: PNG + JSON manifest.
Meta-agent that routes bioinformatics requests to specialised sub-skills. Handles file type detection, analysis planning, report generation, and reproducibility export.
Unified analysis pipeline for affinity-based proteomics platforms — Olink (PEA, NPX) and SomaLogic SomaScan (SOMAmer, RFU). Platform-aware QC, normalisation, differential abundance, volcano plots, heatmaps, and PCA.
Compute epigenetic age from DNA methylation arrays using PyAging clocks from GEO accessions or local files.
Compute organ-specific biological age from Olink proteomic data using Goeminne et al. (2025) elastic net aging clocks.
Cell segmentation in fluorescence microscopy images. Supports Cellpose/cpsam (Cellpose 4.0) with additional backends planned. Produces segmentation masks, per-cell morphology metrics (area, diameter, centroid, eccentricity), overlay figures, and a report.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"]}} |
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.
rnaseq-de: The rnaseq-de skill runs the analysis from count matrices. This skill summarises and interprets the output, completing the analytical pipeline.Fire when:
rnaseq-de and wants a written summaryDo NOT fire when:
rnaseq-de)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.
{
"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."
}
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.