ANNOVAR annotation
1
0
Entering edit mode
9 months ago
Eliza ▴ 30

Hi,

I'm trying to annotate VCF file:

enter image description here

I run the following command

table_annovar.pl \
  --vcfinput eczema.vcf \
  humandb/ \
  -buildver hg19 \
  -out ecze \
  -remove \
  -protocol refGene,cytoBand,exac03,avsnp147,dbnsfp30a \
  -operation g,r,f,f,f \
  -nastring . \
  -polish

but I get the following error :

NOTICE: Running with system command <convert2annovar.pl  -includeinfo -allsample -withfreq -format vcf4 eczema.vcf > ecze.avinput >
Error: invalid record in VCF file: the GT specifier is not present in the FORMAT string: < 1       754182       .       A       G   .> 
Error running system command: <convert2annovar.pl  -includeinfo -allsample -withfreq -format vcf4 eczema.vcf > ecze.avinput>

I can't seem to understand what is the error would be happy for help

VCF annovar • 538 views
ADD COMMENT
2
Entering edit mode
9 months ago

: the GT specifier is not present in the FORMAT string

The is a FORMAT column. When this column exists, a VCF is expected to have some other columns for the genotypes.

The following column could fix the problem.

cut -f1-8 < eczema.vcf > new.vcf

and test with 'new.vcf'

ADD COMMENT

Login before adding your answer.

Traffic: 2299 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6