Entering edit mode
4.3 years ago
Hans
▴
140
Hello
I have generated a vcf file using bcftools pileup and bctools call using this code:
bcftools mpileup -Ou -f ref.fa in.bam | \
bcftools call -mv -Ov -P 0.5 -o out.vcf
Comparing the bam file and the vcf file with IGV I see in some places that in the bam file there are di or trinucleotide variants while in the vcf file I see only snv. Any ideas on how to fix it/or why the vcf ouput is correct?
Thank you
Can you please paste the complete entries for some of these from the VCF?
The DP values indicate that depth of coverage over the position is low. Have you rigorously checked the reads covering this region in IGV to gauge their quality? Keep in mind that NGS data is inherently noisy.
I did not mention it, but it is not an alignment of reads but gene sequences from assembly of one species against the reference of a sister species.