美文网首页基因组组装基因组学
Svim 基于long reads鉴定SV

Svim 基于long reads鉴定SV

作者: 斩毛毛 | 来源:发表于2020-12-23 17:35 被阅读0次

SVIM 可基于long reads(pacbio, ONT,HIFI)进行call SV,deletion, insertion, inversion, tandem duplications, interspersed duplication and translocations.

githup:https://github.com/eldariont/svim
文章:SVIM: structural variant identification using mapped long reads

1、安装

conda create -n svim_env --channel bioconda svim

2、简单操练

所需数据:

  • long reads FASTA/FASTQ (压缩或uncompressed均可)
  • or long reads比对得到的bam文件, 需要\color{red}{sort,index}

在进行long reads比对的时候,可以选择 NGMLR
或者minimap2均可以。

SVIM主要包括4个步骤:

  • collect: 基于Long reads 检测SV
  • cluster:相同的SV进行合并
  • combine:来自不同基因组区域的cluster进行合并
  • genotype:确定基因型
svim alignment my_sample my_alignments.bam my_genome.fa

输出文件:

  • The log file: SVIM_{date}_{time}.log
  • The SV calls in VCF format: variants.vcf
  • The SV calls in BED format: candidates/candidates_*.bed
  • Intermediate signature clusters in BED format: signatures/*.bed

当然也可以进行适当的过滤,比如

## score > 10
bcftools view -i 'QUAL >= 10' variants.vcf'.

相关文章

  • Svim 基于long reads鉴定SV

    SVIM 可基于long reads(pacbio, ONT,HIFI)进行call SV,deletion, i...

  • cuteSV鉴定SV

    一款用于鉴定三代长reads(HiFi, ONT, CLR)的软件。经作者检验,其准确度高于pbsv, svim,...

  • NECAT组装ONT long reads

    NECAT 可用于ONT数据的纠错,组装,如果想对ONT long reads进行call SV,也可以使用nec...

  • NGMLR, Sniffles call 结构变异

    三代测序的盛行,使得SV变得越发重要,基于SV进行相关的研究也较多,相比基于二代测序鉴定的SNP,SV貌似更为准确...

  • LUMPY鉴定SV

    LUMPY,一款鉴定SV软件,基于read-pair, split-read, read-depth的方法。rea...

  • Day 10: Summary

    It's tempting to believethat as long as one reads a lot, ...

  • HyPo: Super Fast & Accurate Poli

    HyPo--全称 Hybrid Polisher.使用short reads或者long reads对组装的基因组...

  • 组装基因组之间结构变异检测

    SVIM-asm 针对单体型和二倍体基因组鉴定 mumer+Assemblytics mumer+Syri MUM...

  • manta 鉴定SV

    Manta Structural Variant Caller 详情:https://github.com/Ill...

  • Delly 鉴定SV

    基于二代,鉴定,分型以及可视化,deleetions, tandem duplications, inversio...

网友评论

    本文标题:Svim 基于long reads鉴定SV

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