agentsclimarketplace

Deg and marker gene heatmap with viridis col clustering

Skill ECNU-ICALK/AutoSkill/SkillBank/Users/u39/deg-and-marker-gene-heatmap-with-viridis-col-clustering

Generates a publication-ready heatmap for differentially expressed genes (DEGs) or marker genes using viridis colormap, column-only hierarchical clustering, and Arial font — applicable to any normalized gene expression matrix with genes as rows and samples/subclusters as columns.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill deg-and-marker-gene-heatmap-with-viridis-col-clustering

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.9 KB, 556 tokens by cl100k_base, as published. Nobody here has run it

deg-and-marker-gene-heatmap-with-viridis-col-clustering

Generates a publication-ready heatmap for differentially expressed genes (DEGs) or marker genes using viridis colormap, column-only hierarchical clustering, and Arial font — applicable to any normalized gene expression matrix with genes as rows and samples/subclusters as columns.

Prompt

Goal

Generate a seaborn-based heatmap for differentially expressed or marker genes, accepting a pandas DataFrame with genes as rows and samples/subclusters as columns.

Constraints & Style

  • Use cmap="viridis" exclusively; do not use RdBu_r, center, or any other colormap or symmetry setting.
  • Enable only column-wise hierarchical clustering: set col_cluster=True and row_cluster=False.
  • Use Arial font for all text elements (title, axis labels, tick labels, colorbar label); enforce via plt.rcParams["font.sans-serif"] = ["Arial", "DejaVu Sans", "Liberation Sans"] and plt.rcParams["axes.unicode_minus"] = False; explicitly annotate plot elements if seaborn does not inherit font settings.
  • Apply row-wise z-score normalization (per gene) before plotting: df.T.apply(lambda x: (x - x.mean()) / x.std(ddof=0)).T.
  • Use robust=True in sns.heatmap for outlier resilience.
  • Set linewidths=0.3 and linecolor='lightgray' for subtle cell borders.
  • Set figure size to (8, 10); include colorbar labeled "Z-score" with shrink=0.6.
  • Title: "Differentially Expressed Genes (Z-score normalized)" or "Marker Genes (Z-score normalized)" (bold, 14pt); adapt label based on context but retain consistent phrasing.
  • Axis labels: "Samples" or "Subclusters" (x), "Genes" (y); no rotation of tick labels.
  • Call plt.tight_layout() before plt.show(); ensure no clipping.

Workflow

  1. Accept input DataFrame with gene-indexed rows and sample/subcluster-labeled columns.
  2. Apply row-wise z-score normalization.
  3. Configure matplotlib font settings for Arial compatibility.
  4. Generate heatmap with specified clustering, colormap, robust scaling, layout, and labeling.
  5. Display the plot.

Triggers

  • 生成差异表达基因热图
  • 画DEG热图
  • 单细胞亚群标志基因热图
  • scRNA-seq marker gene heatmap
  • viridis列聚类热图

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.