新工具:轻松可视化基因组,部分功能超IGV~

本次分享一个Python基因组数据可视化工具figeno。

figeno擅长可视化三代long reads、跨区域基因组断点视图(multi-regions across genomic breakpoints)、表观组数据(HiC、ATAC-seq和ChIP-seq等)可视化、WGS中的CNV和SV可视化等。

figeno部分功能优秀于老牌工具如IGV,详细对比如下,

以下简单列举figeno使用案例:

支持三代测序数据可视化(Nanopore, PacBio数据),例如, base modification(5mC、hmC、6 mA、5mC、5hmC))

支持多种格式数据类型输入

chr_axis: the genomic coordinates,

genes: annotated genes in the region

bed:additional custom genomic annotation

bigwig:visualization of epigenetic data types including ChIP-seq or ATAC-seq

hic:visualize HiC data (.cool format)等。


支持多种格式publication-quality fIgures导出

例如,bitmap (png)或者矢量图r(svg, pdf)等


HiC data across breakpoints,展示跨基因组区域的染色质相互作用,


WGS中的CNV和SV可视化


asm


Symmetrical layout for WGS

show the copy-number data on two rows, with the SVs in between

支持GUI界面

支持Python编程API

复制代码
from figeno import figeno_make

config={"general":{"reference":"hg19","layout":"horizontal"}}
config["output"] = {"file":"figure.svg","dpi":200,"width":180}
config["regions"] = [{"chr":"17","start":7534342,"end":7628246}]
config["tracks"] = [
    {"type":"bigwig","file":"/path/to/H3K27ac.bigWig","color":"#e74c3c","label":"H3K27ac"},
    {"type":"bed","file":"/path/to/CGI.bed","color":"#34495e","label":"CpG islands"},
    {"type":"genes"},
    {"type":"chr_axis"}
  ]
figeno_make(config)

参考:https://pubmed.ncbi.nlm.nih.gov/38857451/

相关推荐
阿里云大数据AI技术2 天前
光轮智能 × 阿里云:共建 Physical AI 云上数据、评测与持续学习基础设施
人工智能·机器学习
拾年2753 天前
大模型的"聪明"从哪来?聊聊 AI 数据集的那些事儿
人工智能·深度学习·机器学习
罗西的思考4 天前
机器人 / 强化学习】HIL-SERL:人类在环驱动的具身智能进化框架
人工智能·算法·机器学习
ShallWeL4 天前
【机器学习】(3)—— 线性回归:梯度下降
人工智能·机器学习
ShallWeL4 天前
【机器学习】(2)—— 线性回归:损失函数
人工智能·机器学习
Lihua奏7 天前
# 机器学习:机器是怎么从数据里学出规则的
机器学习