Count the number of exons in a trasncript
1
0
Entering edit mode
3.7 years ago
speycast • 0

Hello,

I'd like to know how to count the number of exons in a given transcript using NCBI eutils? for example NM_020742.3.

thanks very much!

NCBI exon transcript eutils • 938 views
ADD COMMENT
3
Entering edit mode
3.7 years ago
GenoMax 141k

Using Entrezdirect:

$ esearch -db nuccore -query "NM_020742.3" | efetch -format ft | grep - w "exon" | wc -l
       6

If you need starts and stops:

$ esearch -db nuccore -query "NM_020742.3" | efetch -format ft | grep -w "exon"
1   159 exon
160 936 exon
937 1089    exon
1090    1275    exon
1276    2065    exon
2066    5706    exon
ADD COMMENT
0
Entering edit mode

Thanks so much genomax!!!!

ADD REPLY

Login before adding your answer.

Traffic: 2453 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