There are two flags that I'm using that are not in your command.
--no-snps
suppresses calling SNPs, because for CRISPR analysis you don't really care about them
and
--use-duplicate-reads
I have a feeling that this one is what you need. When next-gen sequencing amplicons most of your reads are going to be duplicates, simply because you are sequencing identical amplicons. You need to keep these in to get proper depth for the analysis. Make sure your alignment pipeline is not removing duplicates, and use the above flag in freebayes to make sure the indel analysis is using them.
--no-snps
suppresses calling SNPs, because for CRISPR analysis you don't really care about them
and
--use-duplicate-reads
I have a feeling that this one is what you need. When next-gen sequencing amplicons most of your reads are going to be duplicates, simply because you are sequencing identical amplicons. You need to keep these in to get proper depth for the analysis. Make sure your alignment pipeline is not removing duplicates, and use the above flag in freebayes to make sure the indel analysis is using them.
Comment