Hi,
I have some trouble with alignment using bowtie.
I'm searching for reads that map at a unique place on the genome, so, i take 1 reads that i know it's a unique mapper and it map the genome 100%, and i try to align it with bowtie with the following command, allowing up to 2 mismatches (because for the other reads i want to allow up to 2 mismatches).
For verification :
But, when i try to align the other reads (allowing up to 2mismatches), this reads have no hit :
But,when i do:
And whan i add -a --best --strata i get :
I'm really lost, is the -a --best --strata a good solution ?
Thanks in advance for your reply.
I have some trouble with alignment using bowtie.
I'm searching for reads that map at a unique place on the genome, so, i take 1 reads that i know it's a unique mapper and it map the genome 100%, and i try to align it with bowtie with the following command, allowing up to 2 mismatches (because for the other reads i want to allow up to 2 mismatches).
For verification :
Code:
[B]bowtie -v 0 -m 1 -t droso_build -c ATGCGAGAGTGGT[/B] Time loading forward index: 00:00:01 Time for 0-mismatch search: 00:00:00 0 + chr2L 5308 ATGCGAGAGTGGT IIIIIIIIIIIII 0 # reads processed: 1 # reads with at least one reported alignment: 1 (100.00%) # reads that failed to align: 0 (0.00%) Reported 1 alignments to 1 output stream(s) Time searching: 00:00:01 Overall time: 00:00:01
Code:
[B]bowtie -m 1 -v 2 -t droso_build -c ATGCGAGAGTGGT[/B] Time loading forward index: 00:00:00 Time loading mirror index: 00:00:01 End-to-end 2/3-mismatch full-index search: 00:00:00 # reads processed: 1 # reads with at least one reported alignment: 0 (0.00%) # reads that failed to align: 0 (0.00%) # reads with alignments suppressed due to -m: 1 (100.00%) No alignments Time searching: 00:00:01 Overall time: 00:00:01
And whan i add -a --best --strata i get :
Code:
bowtie -a -v 2 -m 1 --best --strata -t droso_build -c ATGCGAGAGTGGT Time loading forward index: 00:00:00 Time loading mirror index: 00:00:01 End-to-end 2/3-mismatch full-index search: 00:00:00 0 + chr2L 5308 ATGCGAGAGTGGT IIIIIIIIIIIII 0 # reads processed: 1 # reads with at least one reported alignment: 1 (100.00%) # reads that failed to align: 0 (0.00%) Reported 1 alignments to 1 output stream(s) Time searching: 00:00:01 Overall time: 00:00:01
Thanks in advance for your reply.
Comment