-
Notifications
You must be signed in to change notification settings - Fork 21
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
gene2transcripts API: Genome Assembly Filter #515
Comments
We (LOVD) solve this by looking up the given |
Your requirement is to use "...the API to retrieve exon genomic start/end coordinates (for a specific genome assembly) for MANE transcripts." As far as I am aware, mappings for MANE transcripts are only comprehensively maintained for GRCh38. Some limited mapping data for old versions of MANE can be found for GRCh37: http://tark.ensembl.org/web/mane_GRCh37_list/. If we were to implement retrieval of exon start/stop coordinates via the API, it would probably have to be only for GRCh38. Support for GRCh37 might prove to be problematic. UPDATE: I have looked again at your original request and it looks like you would like our API to output exon genomic start/end coordinates to allow you to use the data for some other purpose. Unless output of these data provided enhanced functionality for normal validation of sequence variants, it is unlikely that we prioritise such a request. |
Maybe I misunderstand the request, but the |
Thanks both. Yes, being able to see the genome-build identifiers in the output as well as the NC IDs would be useful and solve my problem. This is something i've discussed briefly with @Peter-J-Freeman as part of an MSc project at Manchester Uni. |
Sorry for the slow responses @Sophiaj93 . As you know I have been slammed with teaching material development. I have developed an update to the API v2 version of genes to transcripts. The input can now be a list of genes "|" delimited. You can now also filter by transcript ID, or the key filters described in the Swagger docs. You can also now filter by genome build :) Data are returned in list format. Will be live and ready for testing by the end of the day |
… be processed. This is in response to requests #516 and #515 and links to the API here openvar/rest_variantValidator@d1705bd
@Sophiaj93 Code is now live, ready for testing. https://rest.variantvalidator.org/ |
I believe this adds required fields to the API endpoint, right? If so, this breaks existing implementations. Luckily, I'm not using v2 yet of this function, but updates like this require an API with versioning. Have you checked the server logs for calls to |
This endpoint is still in dev, so not yet fixed. Just haven't had time to maintain a dev server recently. But will check. Very much doubt its being used though. Good point, thanks Still need to implement the API versioning. On the to do list. |
Ah, I see. Is there any documentation or annotation on the Swagger UI on what endpoints are in dev and, therefore, can change at any given moment? |
That a good idea. No need in this case because I will fix by the end of the month and I think already fixed now, but good plan! |
Hi Pete, Sorry for the huge delay in looking at this. Thanks again for adding these features! I've just updated my code based on the new version of the gene2transcripts_v2 endpoint and all is working well. The genome build filter in particular is really helpful. I haven't properly implemented the "|" delimited genes list in my code yet but have tried it out via the URL. Can't see any issues. Thanks |
Is your feature request related to a problem? Please describe.
I am trying to use the API to retrieve exon genomic start/end coordinates (for a specific genome assembly) for MANE transcripts.
Describe the solution you'd like
It would be useful to add the ability to filter on required genome assembly as part of the API request (and/or specify which genome assembly the coordinates correspond to in the API response JSON)
Describe alternatives you've considered
Manually searching the transcript IDs in RefSeq to find the associated genome assembly.
Additional context
With this API call I am hoping to generate a list of exon genomic start/end coordinates that I could then write to a BED file
The text was updated successfully, but these errors were encountered: