数据与复现科研绘图与可视化K-Dense-AI/claude-scientific-skills数据与复现
PY

PyDESeq2

维护者 K-Dense Inc. · 最近更新 2026年4月1日

PyDESeq2是一个Python implementation of DESeq2 ,用于 differential expression analysis ,支持 bulk RNA-seq data。 Design 、 execute complete workflows ,面向 data loading through result interpretation,,涵盖 single-factor 、 multi-factor designs,Wald tests ,支持 multiple testing correction,optional apeGLM shrinkage,、 integration ,支持 pandas 、 AnnData。

Claude CodeOpenClawNanoClaw分析处理写作整理pydeseq2bioinformaticspackagebioinformatics & genomics

原始来源

K-Dense-AI/claude-scientific-skills

https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/pydeseq2

维护者
K-Dense Inc.
许可
MIT license
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • PyDESeq2是一个Python implementation of DESeq2 ,用于 differential expression analysis ,支持 bulk RNA-seq data. Design 、 execute complete workflows ,面向 data loading through result interpretation,,涵盖 single-factor 、 multi-factor designs,Wald tests ,支持 multiple testing correction,optional apeGLM shrinkage,、 integration ,支持 pandas 、 AnnData。
  • counts_df = pd.read_csv("counts.csv",index_col=0).T # Transpose to samples × genes metadata = pd.read_csv("metadata.csv",index_col=0)。

原始文档

SKILL.md 摘录

When to Use This Skill

This skill should be used when:

  • Analyzing bulk RNA-seq count data for differential expression
  • Comparing gene expression between experimental conditions (e.g., treated vs control)
  • Performing multi-factor designs accounting for batch effects or covariates
  • Converting R-based DESeq2 workflows to Python
  • Integrating differential expression analysis into Python-based pipelines
  • Users mention "DESeq2", "differential expression", "RNA-seq analysis", or "PyDESeq2"

Quick Start Workflow

For users who want to perform a standard differential expression analysis:

import pandas as pd
from pydeseq2.dds import DeseqDataSet
from pydeseq2.ds import DeseqStats

## 2. Filter low-count genes

genes_to_keep = counts_df.columns[counts_df.sum(axis=0) >= 10]
counts_df = counts_df[genes_to_keep]

适用场景

  • Use PyDESeq2 to prepare 论文级图表。
  • Apply PyDESeq2 when results need clear visual communication。

不适用场景

  • Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。

相关技能

相关技能

返回目录
BG
数据与复现科研绘图与可视化

bgpt-paper-search

bgpt-paper-search:BGPT是一个remote MCP server that searches curated database of scientific papers built ,面向 raw experimenta…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看
BI
数据与复现科研绘图与可视化

bio-data-visualization-volcano-customization

bio-data-visualization-volcano-customization:Customized volcano plots ,支持 ggplot2 或 matplotlib ,用于 DE results。

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研绘图与可视化

bio-de-visualization

bio-de-visualization:可视化 differential expression results ,使用 DESeq2/edgeR built-in functions。 Covers plotMA,plotDispEsts…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研绘图与可视化

bio-metagenomics-visualization

bio-metagenomics-visualization:可视化 metagenomic profiles ,使用 R (phyloseq,microbiome) 、 Python (matplotlib,seaborn)。 创建 st…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看