1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

DNA解析3 - マッピング memo

Last updated at Posted at 2019-02-01

###フロー
リファレンスGenome配列取得 ⇨ Short Read Array配列取得 ⇨ Qualityチェック ⇨ マッピング ⇨ 可視化


###マッピング
####インデックス作成
Genome配列情報から、遺伝子のインデックスを作成しておく。
.bt2 拡張子が6種生成される。

> bowtie2-build -f pombe.fa pombe

####マッピング
Fastq形式のSRA配列を、Genome配列にマッピング。

> bowtie2 -x pombe -U SRR8512918.fastq -S SRR8512918.sam

####SAM->BAM変換

> samtools view -Sb SRR8512918.sam > SRR8512918.bam

or

> samtools view -b -o SRR8512918.bam SRR8512918.sam

####ソート

> samtools sort SRR8512918.bam -o SRR8512918_sorted.bam

####インデックスファイル .bai 作成

> samtools index SRR8512918_sorted.bam

####IGV

> igv.sh

Genome -> Load Genome from File、でFastaファイルを指定。
File -> Load from File...、でソート・インデックスした.bamファイルを指定。
読み込みフォルダに.baiファイル。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?