-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Indel Annotation Problem with Uploaded Variation Column #1799
Comments
Hi @hkirmak, Can you please re-run VEP for the two variants above with the following options:
|
Hi, I ran the command you have sent above in a clean environment but it generated the following error: ERROR: Unexpected extra command-line parameter(s): 0 at /miniconda3/envs/junk/bin/vep line 30. We usually do not use database option as it is incompatible with the --cache option and offline running according to Ensembl-VEP documentation: https://www.ensembl.org/info/docs/tools/vep/script/vep_options.html#basic I ran the command without the --database option (completed without any errors but there were some warnings about transcript-assembly mismatches, expected since --verbose is invoked) and the variants appear as deletions as you have found. The command I use is much more different as it involves other options and custom annotations. I will check what may be causing such a problem, if you have another suggestion for our problem that would also be greatly appreciated. Thank you. |
I checked my command and the only difference is that I use the option "--individual all". I am not entirely sure what this option points to. As in the documentation: |
Thanks for checking.
This output displays the two input variants merged. VEP is not supposed to do that, it should return annotations for each variant separately.
You should review the |
The problem is caused by the option We are going to review this option. Sorry for the inconvenience. |
Thank you. I will proceed without the --individual all option until this issue is resolved. |
Can you explain what you're trying to get by using the |
I was using the --individual option for annotating multiallelic sites (because that was what I understood from the VEP documentation) but then I had to use bcftools normalization for these sites as they generated downstream filtering errors prior to annotation step, therefore --individual option is not a necessity for me anymore, but I hadn't removed it from the VEP command. |
The option --individual takes into account the genotype data while annotating variants, this is probably not the option you're looking for. |
Describe the issue
After performing variant calling with GATK's HaplotypeCaller and normalize multiallelic sites usign bcftools, I annotate my variants usign Ensembl VEP v113.2. There seems to be a discrepancy in the annotated variants especially variants within the homopolymer regions. In my VCF file, there is a deletion within a homopolymer region. Ensembl VEP annotates this variation as "indel" and creates a uploaded variation with ambiguous values.
Additional information
Please fill in the following sections to help us find the source of your issue as quickly as possible.
System
Full VEP command line
Full error message
Data files (if applicable)
They include:
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT s1
chr1 235380161 . TTGTGTGTG T 559.02 PASS AC=1;AF=0.5;AN=2;DB;DP=95;ExcessHet=3.0103;FS=0;MLEAC=1;MLEAF=0.5;MQ=60;QD=27.95;SOR=1.244 GT:AD:DP:GQ:PL:SB 1/0:0,12:20:99:576,216,456:0,0,6,10
chr1 235380161 . TTGTGTGTG TTGTGTG 559.02 PASS AC=1;AF=0.5;AN=2;DB;DP=95;ExcessHet=3.0103;FS=0;MLEAC=1;MLEAF=0.5;MQ=60;QD=27.95;SOR=1.244 GT:AD:DP:GQ:PL:SB 0/1:0,8:20:99:576,384,358:0,0,6,10
chr1_235380168_TG/TGTGTGTG/TGTGTG chr1:235380168-235380169 ENSG00000284770 - - - - - - - - - ENST00000366601 Transcript intron_variant - - - - - - MODIFIER 1 indel TBCE HGNC:11582 protein_coding - - - - Ensembl - - - - ENST00000366601.8:c.100+20_100+21insTGTGTG - chr1:g.235380209_235380214dup - - - - - - - - - - 0.901 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Q15813,A0A2R8Y809,A0A2R8Y4P2,A0A2R8YER9,A0A2R8Y4V6,A0A2R8Y5Q8,A0A2R8YHI9,A0A2R8Y7E7,A0A2R8YFM3,A0A2R8Y787,A0A2R8Y6G3,A0A2R8Y7H8,A0A2U3TZJ6,A0A2R8Y5H6,A0A2R8Y784
chr1_235380168_TG/TGTGTGTG/TGTGTG chr1:235380168-235380169 ENSG00000284770 - - - - - - - - - ENST00000366601 Transcript intron_variant - - - - - - MODIFIER 1 indel TBCE HGNC:11582 protein_coding - - - - Ensembl - - - - ENST00000366601.8:c.100+20_100+21insTGTG - chr1:g.235380211_235380214dup - - - - - - - - - - 0.901 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(...) so on
According to the VEP documentation, these variatns should be deletion
The text was updated successfully, but these errors were encountered: