bio-chipseq-visualization:可视化 ChIP-seq data ,使用 deepTools,Gviz,、 ChIPseeker。 创建 heatmaps,profile plots,、 genome browser…
数据与复现
BI
bio-data-visualization-interactive-visualization
维护者 FreedomIntelligence · 最近更新 2026年4月1日
bio-data-visualization-interactive-visualization:Interactive omics visualizations ,支持 Plotly,Bokeh,或 shiny。
原始来源
FreedomIntelligence/OpenClaw-Medical-Skills
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-data-visualization-interactive-visualization
- 维护者
- FreedomIntelligence
- 许可
- MIT
- 最近更新
- 2026年4月1日
技能摘要
来自 SKILL.md 的关键信息
核心说明
- fig = px.scatter(df,x='PC1',y='PC2',color='condition',hover_data=['sample'],title='PCA Plot') fig.write_html('pca_interactive.html') fig.show()。
- p <- ggplot(df,aes(PC1,PC2,color = condition,text = sample)) + geom_point() ggplotly(p)。
原始文档
SKILL.md 摘录
plotly (Python)
import plotly.express as px
import plotly.graph_objects as go
import pandas as pd
## Native plotly
plot_ly(df, x = ~PC1, y = ~PC2, color = ~condition, text = ~sample,
type = 'scatter', mode = 'markers') %>%
layout(title = 'PCA Plot')
plotly
fig.write_html('plot.html') fig.write_json('plot.json')
适用场景
- Use bio-data-visualization-interactive-visualization to prepare 论文级图表。
- Apply bio-data-visualization-interactive-visualization when results need clear visual communication。
不适用场景
- Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。
上游相关技能
- data-visualization/ggplot2-fundamentals - Static plots
- data-visualization/specialized-omics-plots - Omics-specific plots
- reporting/quarto-reports - Embed in reports
相关技能
相关技能
BI
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
bio-consensus-sequences:生成 consensus FASTA sequences by applying VCF variants to reference ,使用 bcftools consensus。 适合在cr…
FreedomIntelligence/OpenClaw-Medical-Skills查看
bio-copy-number-cnv-visualization:可视化 copy number profiles,segments,、 compare across samples。 创建 publication-quality plo…
FreedomIntelligence/OpenClaw-Medical-Skills查看
bio-data-visualization-circos-plots:Circular genome visualization ,支持 Circos 或 pycirclize。
FreedomIntelligence/OpenClaw-Medical-Skills查看