Hello everyone,
I'm trying to map some specific reads to a reference genome.
The problem is these reads has some "N" characters in them. Actually my mapping is from reads like this:
GCT (N)n CATCGGA
with n = 0 to 30 size.
I'm trying to use bowtie2 to make the alignments considering the Ns and no other mismatch with this:
bowtie2 -f -N 0 --np 0 --n-ceil 0,0.75 -x genome reads -S result.sam
My problem is to set --n-ceil parameter. I thought that the maximum Ns in my sequence is 30 in a 40 sequence length (75% of the sequence are N).
Does anyone here knows what is the problem? I just have to adjust this parameter?
Thank you.
I'm trying to map some specific reads to a reference genome.
The problem is these reads has some "N" characters in them. Actually my mapping is from reads like this:
GCT (N)n CATCGGA
with n = 0 to 30 size.
I'm trying to use bowtie2 to make the alignments considering the Ns and no other mismatch with this:
bowtie2 -f -N 0 --np 0 --n-ceil 0,0.75 -x genome reads -S result.sam
My problem is to set --n-ceil parameter. I thought that the maximum Ns in my sequence is 30 in a 40 sequence length (75% of the sequence are N).
Does anyone here knows what is the problem? I just have to adjust this parameter?
Thank you.
Comment