数据与复现统计与数据分析FreedomIntelligence/OpenClaw-Medical-Skills数据与复现
BI

bio-chipseq-differential-binding

维护者 FreedomIntelligence · 最近更新 2026年4月1日

bio-chipseq-differential-binding:Differential binding analysis ,使用 DiffBind。 比较 ChIP-seq peaks between conditions ,支持 statistical rigor。 适合在comparing ChIP-seq binding between conditions时使用。

OpenClawNanoClaw分析处理复现实验bio-chipseq-differential-binding🧬 bioinformatics (gptomics bio-* suite)bioinformatics — epigenomics & chromatindifferential

原始来源

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-chipseq-differential-binding

维护者
FreedomIntelligence
许可
MIT
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • R:DiffBind::dba() → dba.count() → dba.contrast() → dba.analyze()。
  • 比较 ChIP-seq binding between conditions" → Identify genomic regions ,支持 statistically significant differences in transcription factor 或 histone mark occupancy between experimental groups. R:DiffBind::dba() → dba.count() → dba.contrast() → dba.analyze()。
  • samples <- data.frame( SampleID = c('ctrl_1','ctrl_2','treat_1','treat_2'),Tissue = c('cell','cell','cell','cell'),Factor = c('H3K4me3','H3K4me3','H3K4me3','H3K4me3'),Condition = c('control','control','treatment','treatment'),Replicate = c(1,2,1,2),bamReads = c('ctrl1.bam','ctrl2.bam','treat1.bam','treat2.bam'),Peaks = c('ctrl1_peaks.narrowPeak','ctrl2_peaks.narrowPeak','treat1_peaks.narrowPeak','treat2_peaks.narrowPeak'),PeakCaller = c('macs','macs','macs','macs') )。
  • 撰写.csv(samples,'samples.csv',row.names = FALSE)。

原始文档

SKILL.md 摘录

Create Sample Sheet

Goal: Define the experimental design linking BAM files, peak files, and sample metadata for DiffBind.

Approach: Build a data frame (or CSV) with required columns mapping each sample to its files and conditions.


## Load Data

**Goal:** Initialize a DiffBind object from the sample sheet containing all samples and peaks.

**Approach:** Read the sample sheet CSV into a DBA object that identifies overlapping peaks across samples.

```r
library(DiffBind)

## From sample sheet

dba_obj <- dba(sampleSheet = 'samples.csv')

适用场景

  • 适合在comparing ChIP-seq binding between conditions时使用。

不适用场景

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

上游相关技能

  • peak-calling - Generate input peak files
  • peak-annotation - Annotate differential peaks
  • differential-expression - Compare with RNA-seq
  • pathway-analysis - Functional enrichment

相关技能

相关技能

返回目录
AR
数据与复现统计与数据分析

arxiv-database

arxiv-database:This skill provides Python tools ,用于 searching 、 retrieving preprints ,面向 arXiv.org ,通过 its public Atom A…

Claude Code分析处理
K-Dense-AI/claude-scientific-skills查看
BA
数据与复现统计与数据分析

bayesian-optimizer

bayesian-optimizer:Bayesian optimization ,用于 experimental design 、 hyperparameter tuning in biomedical research。

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现统计与数据分析

bio-alignment-files-bam-statistics

bio-alignment-files-bam-statistics:Compute alignment statistics:flagstat,idxstats,coverage depth。

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现统计与数据分析

bio-alignment-msa-statistics

bio-alignment-msa-statistics:Calculate alignment statistics ,涵盖 sequence identity,conservation scores,substitution matri…

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