So you're saying that I have to disallow orphaned alignments if I want to disallow discordant alignments? This would be less than optimal.
• 0 views
•
link
Hi All
Can anyone explain why I get many paired-end alignments in the wrong orientation and 17,000 bp apart with the following command
bowtie2 --local -N 0 -L 25 --threads 10 -I 0 -X 750 --no-discordant -x reference.fa -1 F05-63_TGGAACAA_L001_R1_001.sample.fq -2 F05-63_TGGAACAA_L001_R2_001.sample.fq -S F05_63-reads_1and2-vs-reference.fa.sam
Thanks
Mark
You need the --no-mixed option. You're not the only person to have found this a bit weird :)
So you're saying that I have to disallow orphaned alignments if I want to disallow discordant alignments? This would be less than optimal.
Correct, since there's no distinction made between singletons from a pair that both map and singletons from a pair where only one maps. The only other option is to allow all of this and just filter the output with a small script.
Log in to answer this question.
Can you print a few of such alignments from the SAM output that you got?
Here's an example