美文网首页『三代测序』
Assembly--软件PBcR和Canu

Assembly--软件PBcR和Canu

作者: 晓佥 | 来源:发表于2019-06-10 08:23 被阅读39次

1.PBcR

下载说明页:
http://wgs-assembler.sourceforge.net/wiki/index.php?title=PBcR

安装:

 bzip2 -dc wgs-8.3rc2.tar.bz2 | tar -xf -
 cd wgs-8.3rc2
 cd kmer && make install && cd ..
 cd src && make && cd ..

1.PBcR是混合组装工作流。工作原理是首先提高单分子序列的准确性,然后组装改进的序列
2.组装PacBio或Oxford Nanopore数据
3.perl程序所写,需要的模块较多
4.Celera Assembler算法
5.不再被维护



测试数据: Lambda Phage(噬菌体)
命令行:
PBcR PBcR -length 500 -partitions 200 -l lambda -s pacbio.spec -fastq pacbio.filtered_subreads.fastq genomeSize=50000
fastqToCA -libraryname illumina -technology illumina -type sanger -innie -reads illumina.fastq > illumina.frg
PBcR -length 500 -partitions 200 -l lambdaIll -s pacbio.spec -fastq pacbio.filtered_subreads.fastq genomeSize=50000 illumina.frg

-s pacbio.spec

2.Canu

安装:
git clone https://github.com/marbl/canu.git
cd canu/src && make
Canu是一个分层组装管道,分四个步骤运行:

        1.使用MHAP检测高噪序列中的重叠
        2.生成校正的序列共识
        3.修剪校正序列
        4.组装修剪后的校正序列

组装PacBio或Oxford Nanopore序列


测试数据:大肠杆菌K12
下载:
curl -L -o pacbio.fastq http://gembox.cbcb.umd.edu/mhap/raw/ecoli_p6_25x.filtered.fastq
命令行:
canu -p ecoli -d ecoli-pacbio genomeSize=4.8m -pacbio-raw pacbio.fastq

相关文章

  • Assembly--软件PBcR和Canu

    1.PBcR 下载说明页:http://wgs-assembler.sourceforge.net/wiki/in...

  • Canu | 三代测序数据组装软件②

    Canu软件简介 Canu软件是Celera Assembler基因组组装软件的一个分支,能利用测序错误率较高的三...

  • Canu

    Canu Canu是基于OLC算法,具有长reads的自纠错和组装功能,是应用最为广泛的三代组装软件(速度相对较慢...

  • 常用生信软件名称

    基因组组装相关软件 abyss、ALLpath、Canu、dbg2olc、ECTools、falcon、HGAP、...

  • 使用Canu对三代测序进行基因组组装

    Canu简介 Canu是Celera的继任者,能用于组装PacBio和Nanopore两家公司得到的测序结果。 C...

  • 三代测序组装工具Canu学习笔记

    Canu简介 Canu是Celera的继任者,能用于组装PacBio和Nanopore两家公司得到的测序结果。 C...

  • wtdbg 组装基因组

    关键词:pacbio; nanopore; assemble wtdbg相较于其他三代四代数据组装软件(Canu,...

  • canu

    学习网址:https://github.com/marbl/canu canu安装 文献阅读 Koren S, W...

  • 生物信息百Jia软件(28):canu

    欢迎订阅WX众号:基因学苑,更多精彩内容等你发掘! 基因学苑Q群:32798724 上一次介绍了三代拼接工具fal...

  • 三代组装软件Canu简介

    作者:May审稿:童蒙编辑:angelica 对于长读长序列组装,之前已经简单介绍了几款常用软件(详见三代组装软件...

网友评论

    本文标题:Assembly--软件PBcR和Canu

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