Hi Sally,
CAVA
is designed to annotate variation from reference genome sequence thus does not
currently support monomorphic reference calls as no variation exists at these
positions. We are working on an update which will recognize these sites rather
than generating an error.
In the meantime, these calls could be separated prior to running CAVA with the
following bash commands (if using UNIX):
cat file.vcf | awk '($5==".") {print}' > monomorphic.vcf
cat file.vcf | awk '($5!=".") {print}' > forCava.vcf
if '.' in alt:
logging.info("Variant ignored because it is monomorphic reference: "+self.chrom+':'+str(self.pos)+' '+self.ref+'>'+alt)
continue