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

Bowtie2 基因组mapping

程序员文章站 2024-03-02 19:40:28
...

Bowtie 2是一种超快速且高效存储的工具,可用于将测序序列与参考序列进行比对。

https://github.com/BenLangmead/bowtie2

建立参考基因组索引

# Building a small index
bowtie2-build example/reference/lambda_virus.fa example/index/lambda_virus

# Building a large index
bowtie2-build --large-index example/reference/lambda_virus.fa example/index/lambda_virus

测序文件(fastq)与参考基因对比(mapping)

# Aligning unpaired reads
bowtie2 -x example/index/lambda_virus -U example/reads/longreads.fq

# Aligning paired reads
bowtie2 -x example/index/lambda_virus -1 example/reads/reads_1.fq -2 example/reads/reads_2.fq
fastq fasta格式转化

fastq fasta格式转化

sam bam转化 (samtools工具)

# BAM -> SAM
samtools view -h -o out.sam out.bam

# SAM -> BAM
samtools view -bS out.sam >out.bam
#-b 输出BAM format
#-S 输入SAM格式