-
Notifications
You must be signed in to change notification settings - Fork 119
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
support for additional VEP terms #926
Comments
I honestly think this is the realm of the new gemini workflow based upon vcfanno and vcf2db. Our goal is the switch over to this entirely this year. |
Thanks Aaron. If we switch to vcfanno/vcf2b right now, would these be accessible to us in queries? |
If they are in the VCF via vcfanno or VEP, they make it into the database. @brentp - can you corroborate? |
I think these would be impacts in the CSQ string, right? e.g. instead of An example VCF with a few variants would be helpful. |
Ok, we finally got this working in VEP and these show up in the CSQ string, but not in the Consequence field. They are instead in the SpliceRegionOutput field. Here's an example. More examples in the VCF available here:
|
Gotcha, looks like we would need to update the logic in geneimpacts and in vcf2db to support this. |
Based on the findings of the DDD paper, we would like to be able to filter for the following variant annotations created by the VEP SpliceRegion plugin
Info here: http://www.ensembl.info/2018/10/26/cool-stuff-the-vep-can-do-splice-site-variant-annotation/
Plugin here: https://github.com/Ensembl/VEP_plugins/blob/release/94/SpliceRegion.pm
None of these annotations are currently listed in GEMINI's impacts column. How would we be able to access them when they don't have their own custom vep_xxx column (my understanding is that they are just provided by VEP as the annotation)? (right now we just do impact_severity<>'LOW' in GEMINI so I imagine we would have to do
impact_severity<>'LOW' or xxxxx='yyy' or ...
)The text was updated successfully, but these errors were encountered: