Entering edit mode
3.8 years ago
snehu.sambare
▴
10
Bowtie 2 yields different results when "-a" option is used.
bowtie2 **-a** -x ../../masked_rDNA ../hTERT-TP2-R1_p1.fq --no-unal > temp.sam
16914184 reads; of these:
16914184 (100.00%) were unpaired; of these:
16775370 (99.18%) aligned 0 times
**98594** (0.58%) aligned exactly 1 time
**40220** (0.24%) aligned >1 times
0.82% overall alignment rate
bowtie2 -x ../../masked_rDNA ../hTERT-TP2-R1_p1.fq --no-unal > temp.sam
16914184 reads; of these:
16914184 (100.00%) were unpaired; of these:
16775461 (99.18%) aligned 0 times
**98556** (0.58%) aligned exactly 1 time
**40167** (0.24%) aligned >1 times
0.82% overall alignment rate
Since my analysis is sensitive to the counts, I needed to know the reason for such differences.
I am interested in extracting rDNA sequences from the fastq file. If I run Bowtie using -a option, I am getting (98594+40220) 138814 reads as rDNA, but without -a in the second run, the reads I get are (98556+40167) 138723 reads are rDNA.
So the second run has 118 reads less than the first run.
My concern is I may lose something important if I don't use -a option.
So I was wondering what changes, when I use the -a option?
With
-a
you are getting all multi-mapping read locations. I don't recall ifbowtie2
does not report reads that align over a certain limit (check what is default value for-k
) but specifying-a
would report all of them.Thank you. This was helpful :)