Install
openclaw skills install volcano-plot-scriptGenerate R/Python code for volcano plots from DEG (Differentially Expressed Genes) analysis results. Triggered when user needs visualization of gene expression data, p-value vs fold-change scatter plots, publication-ready figures for bioinformatics analysis.
openclaw skills install volcano-plot-scriptA skill for generating publication-ready volcano plots from differential gene expression analysis results.
Volcano plots visualize the relationship between statistical significance (p-values) and magnitude of change (fold changes) in gene expression data. This skill generates customizable R or Python scripts for creating high-quality figures suitable for publications.
Required input data format:
# Example: Run the volcano plot generator
python scripts/main.py --input deg_results.csv --output volcano_plot.png
| Parameter | Description | Default |
|---|---|---|
--input | Path to DEG results CSV/TSV | required |
--output | Output plot file path | volcano_plot.png |
--log2fc-col | Column name for log2 fold change | log2FoldChange |
--pvalue-col | Column name for p-value | padj |
--gene-col | Column name for gene IDs | gene |
--log2fc-thresh | Log2 FC threshold for significance | 1.0 |
--pvalue-thresh | P-value threshold | 0.05 |
--label-genes | File with genes to label | None |
--top-n | Label top N significant genes | 10 |
--color-up | Color for upregulated genes | #E74C3C |
--color-down | Color for downregulated genes | #3498DB |
--color-ns | Color for non-significant genes | #95A5A6 |
Medium - Requires understanding of:
Auto-generated skill for bioinformatics visualization.
| Risk Indicator | Assessment | Level |
|---|---|---|
| Code Execution | Python/R scripts executed locally | Medium |
| Network Access | No external API calls | Low |
| File System Access | Read input files, write output plots | Medium |
| Instruction Tampering | Standard prompt guidelines | Low |
| Data Exposure | Output files saved to workspace | Low |
# Python dependencies
pip install -r requirements.txt
# R dependencies (if using R)
install.packages(c("ggplot2", "dplyr", "ggrepel"))