I want to know how I could download all intronic regions from Ensembl for mice? (mm10)
I want to know how I could download all intronic regions from Ensembl for mice? (mm10)
There's no file of all the introns available. To get this you would need to use the Perl API. You can use the TranscriptAdaptor to fetch all transcripts, then for each transcript, get all Introns. You can then use the intron module to print whatever information you need.
Another possibility is to download: 1) gene coordinates, 2) exon coordinates, 3) chromosome bed
Then, you can use bedtools to subtract 3-1 to get intergenic regions (4). Subtract 1-2 to get introns+intergenic (5). And finally, subtract 5-4 to get introns.
Depending on what do you want to do with introns this may help you.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Hi,
This does not refer to Ensembl, but might be interesting : How To Download All The Introns From Ucsc
Thanks, I need chromosome positions of introne.