Entering edit mode
10 months ago
Allan
•
0
I'm running alignment of ChiP-Seq reads using the two aligners. With Bowtie2, I get a higher alignment rate, but the challenge I come across is that the number of reads that align concordantly exactly 1 times is very low.
14538364 reads; of these:
14538364 (100.00%) were paired; of these:
542575 (3.73%) aligned concordantly 0 times
**4827617 (33.21%) aligned concordantly exactly 1 time**
9168172 (63.06%) aligned concordantly >1 times
----
542575 pairs aligned concordantly 0 times; of these:
62911 (11.59%) aligned discordantly 1 time
----
479664 pairs aligned 0 times concordantly or discordantly; of these:
959328 mates make up the pairs; of these:
368359 (38.40%) aligned 0 times
163260 (17.02%) aligned exactly 1 time
427709 (44.58%) aligned >1 times
98.73% overall alignment rate
Using HISAT2, with the same reads, I get prity low overall alignment rate, but the number of reads that align exactly one times increases
14538364 reads; of these:
14538364 (100.00%) were paired; of these:
3237765 (22.27%) aligned concordantly 0 times
**10611831 (72.99%) aligned concordantly exactly 1 time**
688768 (4.74%) aligned concordantly >1 times
----
3237765 pairs aligned concordantly 0 times; of these:
97017 (3.00%) aligned discordantly 1 time
----
3140748 pairs aligned 0 times concordantly or discordantly; of these:
6281496 mates make up the pairs; of these:
4046882 (64.43%) aligned 0 times
1751945 (27.89%) aligned exactly 1 time
482669 (7.68%) aligned >1 times
86.08% overall alignment rate
I am not sure which is the best approach to take, because most papers are using Bowtie2 alignment for ChIP-Seq read mapping, but for my case, it appears HISAT2 gives better mapping of reads.
I am running Bowtie using the --local option, but the global mapping never yielded a better result either.
For Hisat2 this is the command line I use.
Is there something wrong?
the matter at hand here is that when you have a read-pair and one aligner aligns it concordantly and the other aligns it discordantly who should we trust?
A more sensitive aligner will produce more alignments, and that may produce more discordant alignments.
You are running bowtie2 with a very-sensitive-local parameter, which will produce a lot many more alignments, and perhaps it is worth looking at what exactly is going on there.