Help with finding Genomic coordinates and exon they belong to
1
0
Entering edit mode
24 days ago
Sayantani • 0

Hello,

I have a list of mutation hotspots (such as Gene name : NOTCH1 and change is Amino Acid: L1574). I have the data in the above mentioned format for different genes. Is there any way to get the genomic Coordinates and the exon they belong to at once? Right now I am searching one by one and it is taking quite a lot of time. Any help would be really helpful.

Thanks in advance :)

genomics • 360 views
ADD COMMENT
0
Entering edit mode

cross posted: https://stackoverflow.com/questions/78280030/

you did not link between the two so no one knows that you're asking two sets of online volunteers to spend their time on your problem without telling them that you're also asking the other group.

ADD REPLY
0
Entering edit mode
24 days ago
Zhenyu Zhang ★ 1.2k

Interesting. I had similar tasks before, and this is actually pretty hard to do perfectly in bioinformatics. The issue is that those hotspot denotations are from old days where each gene only has one transcript; nowadays, most genes have many transcript, and sometimes even the original "one" transcript could change.

  1. you need to determine which reference you are using, hg19 or hg38. This is the easy part.

  2. you need to determine the gene model you want to use. This is easy but has caveat: the particular protein change might not exist in your gene model in some edge cases.

  3. in the same gene model, each gene could have many transcript, and you need to figure out the main transcript. This is difficult.

If you don't have too many of such hotspot, the best bet is to look for if there are someone already compiled a major hotspot <-> coordinate mapping table so you can skip step 2 and 3. For missing ones, you have to figure out one by one.

If you want to do step 2 and 3, the recent MANE transcript annotation could help a lot; but this won't solve all the edge cases.

ADD COMMENT

Login before adding your answer.

Traffic: 2607 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6