You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A few variants successfully annotate when pointed to the public GN (https://www.genomenexus.org/) but are failing when pointing to the Genie GN (https://genie.genomenexus.org/). The variants are passed in region format for genie and hgvsg format for public and the variants with common prefixes are handled differently in each case.
Below are a few examples that pass annotation when pointed to public but fail when pointed to genie site. test_failed_variants.txt
The text was updated successfully, but these errors were encountered:
Basically it's because the genomic coordinate doesn't match with the length of the reference allele. Besides insertion, all other types of variants should have the length of start to end equal to the length of reference allele (insertion variants should have end = start + 1). When we do annotation validation, we compare the given reference allele with annotated reference allele. So if the given genomic coordinate doesn't match the length of the reference allele, we will get annotated reference alleles based on the given genomic coordinate, it will be either longer or shorter so it won't be the same as the given reference allele.
There is a corner case on public genome nexus for only one reference allele and wrong end position, e.g. 3,183210442,183210443,C,CT, when we create follow-up query to validate the annotation, the follow-up query is created in hgvs format (3:g.183210442del ), which doesn't include wrong end position information in the query, so it could pass validation.
The solution I would propose is to harmonize the genomic location genome-nexus/genome-nexus#701, it could also solve some other problems like missing end position.
A few variants successfully annotate when pointed to the public GN (https://www.genomenexus.org/) but are failing when pointing to the Genie GN (https://genie.genomenexus.org/). The variants are passed in region format for genie and hgvsg format for public and the variants with common prefixes are handled differently in each case.
Below are a few examples that pass annotation when pointed to public but fail when pointed to genie site.
test_failed_variants.txt
The text was updated successfully, but these errors were encountered: