Clarifying the meaning of Bowtie2's default alignment mode (noob question)
1
0
Entering edit mode
3.5 years ago
Aspire ▴ 300

The default alignment mode of bowtie2 is "search for multiple alignments, report the best one".

As far as I understand this means that secondary and supplementary alignments will not be reported. Which means that

samtools view -f2304 sample_bowtie2Mapped.bam | wc -l

will always yield zero.

1) Is that correct?

2) How can multiple alignments be fetched nevertheless?

bowtie2 • 786 views
ADD COMMENT
1
Entering edit mode
3.5 years ago

Have the flags explained

samtools flags 2304
0x900   2304    SECONDARY,SUPPLEMENTARY

then -f means:

 -f INT   only include reads with all  of the FLAGs in INT present [0]

can an alignment be both secondary and supplementary at the same time? These are mutually exclusive terms.

If you wanted to include only the non-primary alignments and that you would need to do it in two steps.

First select the secondary, then the supplementary.

ADD COMMENT

Login before adding your answer.

Traffic: 1941 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