Hello,
I'm trying to remove multi-matched sequences from my paired-end solexa dataset and could do with a spot of advice.
I use Bowtie to align my reads and thought that the -m option, if set to -m 1, would remove the multi-matched reads.
I tested this on a subset of 1000 reads, the stderr can be seen below:
# reads processed: 1000
# reads with at least one reported alignment: 561 (56.10%)
# reads that failed to align: 260 (26.00%) # reads with alignments suppressed due to -m: 179 (17.90%) Reported 561 paired-end alignments to 1 output stream(s)
This suggests to me that 260 failed to meet the alignment criteria, whilst 179 met the criteria but were matched more than once and so failed to be reported.
If I was to run the same analysis with the same dataset but remove the -m 1 parameter, I would expect to have 561+179= 740 reported alignments.
However, in fact I get 827:
# reads processed: 1000
# reads with at least one reported alignment: 827 (82.70%)
# reads that failed to align: 173 (17.30%) Reported 827 paired-end alignments to 1 output stream(s)
So my question is - what else is the -m flag affecting that could reduce the reported alignments.
Many Thanks!
I'm trying to remove multi-matched sequences from my paired-end solexa dataset and could do with a spot of advice.
I use Bowtie to align my reads and thought that the -m option, if set to -m 1, would remove the multi-matched reads.
I tested this on a subset of 1000 reads, the stderr can be seen below:
# reads processed: 1000
# reads with at least one reported alignment: 561 (56.10%)
# reads that failed to align: 260 (26.00%) # reads with alignments suppressed due to -m: 179 (17.90%) Reported 561 paired-end alignments to 1 output stream(s)
This suggests to me that 260 failed to meet the alignment criteria, whilst 179 met the criteria but were matched more than once and so failed to be reported.
If I was to run the same analysis with the same dataset but remove the -m 1 parameter, I would expect to have 561+179= 740 reported alignments.
However, in fact I get 827:
# reads processed: 1000
# reads with at least one reported alignment: 827 (82.70%)
# reads that failed to align: 173 (17.30%) Reported 827 paired-end alignments to 1 output stream(s)
So my question is - what else is the -m flag affecting that could reduce the reported alignments.
Many Thanks!
Comment