Questions about mapping paired-end data by BWA
1
0
Entering edit mode
6.3 years ago

Hello everyone, I am confused about a strategy hired to mapping paired-end sequencing data which was employed in the paper Accurate identification of human Alu and non-Alu RNA editing sites. In brief, they mapped each of the paired-end reads separately using the commands “bwa aln fastqfile” and “bwa samse -n4”, and then merged these reads into a single file. But bwa has the command bwa sampe, why they just not use that command?

bwa • 1.9k views
ADD COMMENT
0
Entering edit mode

It looks weird, not to make use of the paired information. Probably it has to do something with the fact that they are studying editing, and therefore there can be a difference between reads and template.

ADD REPLY
1
Entering edit mode
6.3 years ago

Previously BWA didn't have support for direct alignment of paired-end sequence data. So, first, you had to align the files in .sai(suffix array index) format separately then merge the matching pairs.

Now, with bwa aln -1 <read1.fq> -2 <read2.fq> you can directly align paired end reads.

ADD COMMENT

Login before adding your answer.

Traffic: 2433 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6