Dear Biostars,
I generated knock-out cell lines using CRISPR-Cas9 with 2 sgRNAs targeting 100bp apart. Then I identified knockout clones by PCR. Instead of sequencing all 75 clones, I decided to combine all clones together and send samples for targeted sequencing. I mapped the reads to the region of interest - instead of mapping to whole genome - using bwa mem default parameter. However instead of detecting deletion, bwa clipped the unmapped sequence. So my questions are,
1.Do you have any suggestions of which mapper I should use to detect 100bp deletion? It would be great if you have any suggestions for parameters to detect 100bp deletion.
2.Is there any software to identify how many different variants are in my samples?
Thanks in advance.
Use
bwa mem
against the entire genome and then a deletion caller such asManta
,Delly
or any tool of your choice.bwa
is a mapper, not a deletion caller so yes, it will clip unmapped bases. These are then in turn the starting point for the variant callers to actually call the variants. What does targeted sequencing mean here? NGS with a custom panel? The question is though why you did not simply screen the clones in a 96-well format PCR for presence of the deletion (standard 3-primer set, 1+2 binding outside the region and 3 a reverse primer inside the region to only amplify together with 1 in case of no deletion) and then sent promising clones to Sanger sequencing with a primer close to the expected breakpoints.Thanks for your input.
Anyway thanks for suggestions for the tools. I'll take a look and try them.
I'm pretty sure bwa-mem won't find a 100 bp deletion, the algorithm just isn't designed for that. You could try with a splice aware aligner, those are designed to look for large gaps.
Any recommendation for splice aware aligner? I searched and found only RNA-seq aligners including STAR and Tophat2. I couldn't figure out how I can use these tools with DNA-seq data.
Why don't you think those will work?