美文网首页metagenomic
宏基因组分析4-宏基因组组装(MEGAHIT,IDBA)

宏基因组分析4-宏基因组组装(MEGAHIT,IDBA)

作者: nitrostarch | 来源:发表于2019-02-01 23:36 被阅读0次

MegaHit
http://www.l3-bioinfo.com/products/megahit.html
https://github.com/voutcn/megahit

安装

sudo apt install g++ zlib1g-dev git make cmake


cd /home/llt/software
git clone https://github.com/voutcn/megahit.git
cd megahit
git submodule update --init
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release 
make -j4
make simple_test
sudo make install

运行

sudo apt install python
/home/llt/software/megahit/megahit --12 /home/llt/test/data/clean/SRR1976948_1p,/home/llt/test/data/clean/SRR1976948_2p --min-contig-len 300 -o assembly

idba

/software/idba/bin/fq2fa --merge --filter ssg1_30m.1.fq ssg1_30m.2.fq ssg1_30m.fa
/software/idba/bin/idba_ud -o assembly_idba-ud -r ssg1_30m.fa --maxk 124 --num_threads 8 --min_contig 300

相关文章

  • 宏基因组分析4-宏基因组组装(MEGAHIT,IDBA)

    MegaHithttp://www.l3-bioinfo.com/products/megahit.htmlhtt...

  • Bacteria genome denovo assembly

    细菌基因组组装金标准:GAGE-B 组装软件的选择 细菌基因组组装的目标不同于大型生物基因组的组装,大型基因组组装...

  • 宏基因组分箱(二)Metabat2分箱实战

    导读 上一篇:宏基因组分箱(一)Megahit组装和QUAST质量评价。分箱工具有很多,我为什么选择Metabat...

  • 比对分析及bam文件

    比对分析 参考基因组的一些概念: Seq number:基因组组装的序列总数。 Total length:基因组组...

  • 宏蛋白质组研究概述

    前言 宏组学(Meta-Omics)是涵盖宏基因组学、宏转录组学和宏蛋白质组学的一门学科。其中宏基因组研究可以获知...

  • 组装简介

    基因组 应该是 生信分析的基因组。一个好的基因组会让生信分析事半功倍。基因组组装简单的理解:借助工具进行 read...

  • 宏基因组:基因组组装之MEGAHIT

    megahit软件安装 megahit使用帮助 megahit使用 查看拼接结果

  • 常用转录组组装软件集合

    转录组组装软件 基因组组装 基因组组装(Genome assembly)是指使用测序方法将待测物种的基因组生成序列...

  • 基因组 组装教程 (T2T)

    导读 本文将介绍T2T基因组,并提供一份基因组组装的资料,其中包含:基因组组装数据和组装策略介绍;染色体水平基因组...

  • 基因组结构注释

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

网友评论

    本文标题:宏基因组分析4-宏基因组组装(MEGAHIT,IDBA)

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