美文网首页生物信息工具基因组组装
「基因组」JupiterPlot评估基因组

「基因组」JupiterPlot评估基因组

作者: 溪溪溪溪溪川 | 来源:发表于2023-04-06 16:55 被阅读0次
JupiterPlot下载地址:https://github.com/JustinChu/JupiterPlot

一种基于Circos的工具,与参考基因组相比,可以可视化基因组组装的一致性。依赖软件circos,minimap2 ,samtools。

JupiterPlot安装

直接github 下载,下载方式很多,下载解压即可。
接着需要将minimap2加入当前环境:
export PATH=/share/nas2/genome/biosoft/minimap2/current/:$PATH

参考命令如下:

分析前,建议提取两个物种染色体序列进行比较画图。

export PATH=/share/nas2/genome/biosoft/minimap2/current/:$PATH
export PATH=/share/nas2/genome/biosoft/circos/circos-0.69/bin/:$PATH

reference=Chr.ref.fa
scaffolds=Chr.query.fa
/share/nas1/user/01.software/JupiterPlot/JupiterPlot-master/jupiter name=test  ref=$reference fa=$scaffolds labels=both

主要使用的参数说明:
name 输出文件前缀
ref 参考基因组,写的时候在前面
fa 自己的物种基因组,写的时候再后面
labels=both 表示显示ref 和fa两者的染色体id

使用中可能存在的问题:

如果使用过程中发现id不全,需要在日志文件nohup.out中一步步debug,手动调整整理好。例如需要加上-g 10000,ref 的染色体id才会抓全。
nohup.out中:
perl /share/nas1/user/01.software/JupiterPlot/JupiterPlot-master/bin/generateConf.pl -n 200 -m -1 -r /share/nas1/user/01.software/JupiterPlot/JupiterPlot-master/config/rawConf.conf -p test -s test_scaffolds.fa -b test-agp.bed -a test.agp -k test_reference.karyotype -g 100000

Optional commands:

sam=                #Specify an existing alignment of scafftigs to if they already exist (naming convention that fatoagp.pl produces must be consistent)

######General Parameters
t=4                 #number of threads to use for minimap2
>######Karyotype options
m=100000            #only use genomic reference chromosomes larger than this value
ng=75               #use largest scaffolds that are equal to 75% of the genome 
maxScaff=-1         #Instead of ng filter by this number of scaffolds
i=0                 #increment for colouring chromosomes (HSV colour shift by setting 0-360), when set to >360 it generates random colours
g=1                 #minimum gap size in reference to render
gScaff=100000       #minimum gap size in scaffolds to render
labels = ref        #Shows reference chromosome name "ref", scaffolds "scaf" or "both".
######Link options
maxGap=100000       #maximum alignment gap allowed to consider a region contiguous
minBundleSize=50000 #minimum size of a contiguous region to render
MAPQ=50             #maximum mapping quality allowed when filtering
linkAlpha=5         #alpha of links 1 = 17% , 2 = 33%, 3 = 50%, 4 = 67% and 5 = 83%.

结果如下:

image.png

相关文章

  • 测序组装与基因注释软件

    零、相关概念 一、数据质控控制 二、 kmer基因组评估 三、基因组拼接 第四步、评估组装结果 五、基因注释

  • [基因组] 基于二代数据的Genome Survey

    基因组Survey评估基因组的大小、杂合情况在做一个基因组之前,需要了解这个物种的基因组大小、杂合情况以及其倍性等...

  • 2019-08-29内容

    基因组拼接 基因组Survey:基因组大小、杂合度、重复序列含量评估 拼接策略制定:二代、三代、Hi-C等 拼接原...

  • 基因组质量评估 | LAI

    转载自 LAI: 评估基因组质量一个标准 基因组组装完成之后,就需要对最后的质量进行评估。我们希望得到的cont...

  • CheckM评估微生物基因组完整度

    测序后组装获得微生物基因组序列完不完整?污染率有多少? checkM是用于评估单菌基因组、单细胞和宏基因组的质量工...

  • 基因组结构注释

    1. 组装基因组质控 得到组装好的基因组序列之后,首先要使用多种方法评估组装质量。这里用到2款可用于基因组组装质量...

  • KmerGenie kmer

    一般来讲,对于较为复杂的基因组,我们通常会在基因组正式组装之前进行k-mer分析,以评估基因组杂合度、重复序列比例...

  • 2021-01-04 基于k-mer进行基因组大小估算的软件-G

    使用 GCE 进行基因组大小评估 最近在尝试做基因组大小的评估。尝试了几款软件。今天介绍一下GCE的使用。该软件G...

  • 组装评估软件Quast和BUSCO

    Quast 通过计算各种指标来评估基因组组装。它既可以使用也可以不使用参考基因组安装:wget https://s...

  • 「BioNano系列」如何进行cmap之间的比对

    BioNano以cmap格式存放光学图谱,为了评估基因组的组装质量或者了解光学图谱中冗余情况(高杂合基因组组装结果...

网友评论

    本文标题:「基因组」JupiterPlot评估基因组

    本文链接:https://www.haomeiwen.com/subject/ogeuddtx.html