Entering edit mode
5.5 years ago
evelyn
▴
230
I am using samtools
for SNP calling from .sorted.bam
file:
bcftools mpileup -f ref.fa bwa.sorted.bam | bcftools view -Ov - > bwa.bcftools.vcf
VCF file gives REF
calling but does not give ALT
calling: A view from vcd file:
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT bwa.sorted.bam
EL1.0ch00 23812 . A <*> 0 . DP=1;I16=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0;QS=0,0;MQ0F=0 PL 0,0,0
Any suggestions will be helpful.
The
<*>
has a meaning - see here: What does <*> mean in a vcf file?You should be piping
mpileup
intobcftools call
, by the way - see here: A: Genotyping with samtools/bcftools