欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2024-03-02 00:02:16
...

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

安装

apt install g++
apt install zlib1g-dev
apt install git

cd /home/llt/software
git clone https://github.com/voutcn/megahit.git
cd megahit
apt install make 
make

运行

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

转载于:https://www.jianshu.com/p/6923c9a9a943