-
Notifications
You must be signed in to change notification settings - Fork 229
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
Displaying exon numbers in IGV web app #922
Comments
This would be great! |
When implementing this for IGV desktop I discovered there is no standard for exon number, your exon number 3 might be someone else's exon number 4, but I can investigate what we did and do the same. It is our interpretation of exon number however, whatever we implement, that is where my hesitancy comes from. |
Yes this makes complete sense. I would be interested in knowing how the determination is made in the desktop version. |
It looks like it just counts from the 5' end, starting at 1. This includes any UTRs before the first coding section. The count is per transcript. So the same exon on different isoforms of a gene can have different exon numbers. |
Ah yeah, that makes sense. Do you have plans to bring that over to the javascript implementation? Or too imprecise? |
@skycolloredo It would be nice. The basic issue is there are 44 open issues here and slightly more in IGV desktop. I can't do them all so they get prioritized, and this hasn't landed at the top yet. |
@jrobinso Yes completely understand, this is a huge amount of work and all tremendously valuable. Thank you for all that you do and your team do! |
I just wanted to throw my support behind this feature. It would be great if it could accessed programmatically. |
…re loaded (i.e. gene feature is completely contained in query window). See issue #922
This is implemented and will go out in the next release, probably by the end of the week. To recap, it just counts exons from the 5' end starting at 1. In some rare cases it might not be able to safely do this, specifically if using an indexed GFF file and the parent feature is not completely contained in the query window (the "visibility window"). When that happens we might not have all the exons, so we really don't know what the numbers would be. This could occur with a combination of large genes and small visibility windows. This is never an issue with "bed" format as the entire transcript is a single feature (line). |
Desktop version of IGV has very useful feature of displaying exon number when mouse pointer is over exon area of transcript reference track. Web app version of IGV shows information about transcript reference after clicking on exon area of transcript reference track, however it does not provide exon number. It would be very useful if IGV web app can also show exon numbers.
The text was updated successfully, but these errors were encountered: