-
Notifications
You must be signed in to change notification settings - Fork 35
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
Proposal: VariantCallingAnnotations to be moved to Variant #41
Comments
@laserson Thanks for the ping! I'd totally missed this. A few thoughts:
Which sort of annotations are you most interested in? Population genomics annotations ( CCing @mlinderm, who put much of the original brains into the |
Also, to add to this, IIRC, the variant annotations were split out for performance reasons. If you want to use them along with genotype data, you can group the genotypes together (e.g., via |
I think this was the use case I was thinking of when I submitted this: I had a good chunk of genotype data from the 1000 Genome project. But I wanted to filter variants based on annotations in the ExAC VCF file. Ideally, I could ingest the ExAC file using |
What annotations did you want to import from the ExAC file though? I think if you import the ExAC via |
Hmm, didn't realize we had that command line tool. Perhaps that's just perfectly sufficient then. I'll close this issue for now. |
Wonderful! There is indeed always a method to the madness. |
This stems from the
-onlyvariants
flag we added tovcf2adam
, which only writes out the variant information. IMO, annotations associated with a variant should be packaged with a variant. Not a genotype. If you're denormalizing the variant information into theGenotype
, you shouldn't denormalize these two pieces separately. This is annoying from the-onlyvariants
perspective, because at the moment, this ends up storing minimal info on the variants, when what I really want to do is analyze the metadata on the variants. Thoughts?The text was updated successfully, but these errors were encountered: