While aligning normal data using bwa how to set seed length to 50 and the number of mismatches allowed within the seed to 2. I am doing as following...not sure bwa aln -l chr22.fa normal_read.fastq > normal.sai
Try
bwa aln -l 50 -k 2 chr22.fa normal_read.fastq > normal.sai
See http://bio-bwa.sourceforge.net/bwa.shtml for more details.
Thank you very much Surya, I was looking same link unfortunately not able to figure it out.
Login before adding your answer.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Thank you very much Surya, I was looking same link unfortunately not able to figure it out.