Where can I download a BED file with exonic regions?
1
0
Entering edit mode
10 days ago
njornet ▴ 20

Hello,

I'm going to perform adaptive sampling with ONT for enrichment of exonic regions. I've tried using UCSC's Table Browser with Group Genes and Gene Predictions and Track NCBI RefSeq and GENCODEV47, I've also tried using filters but I'm not sure how they work. From all the bed files I generated the percentage of covered genome is between 45 and 60% with is obviously not what I want. I've also taken into account that regions may overlap.

How can I download only the exomes?

Thank you.

exome bed • 279 views
ADD COMMENT
0
Entering edit mode

From all the bed files I generated the percentage of covered genome is between 45 and 60% with is obviously not what I want.

how did you do that ? You must use bedtools merge to merge the exons from the transcripts of the same gene.

ADD REPLY
2
Entering edit mode
10 days ago
ATpoint 85k

You can download the GTF file, for example from GENCODE, filter for type == "exon", collapse overlapping intervals and then use these coordinates as the exome.

For example:

gzip -cd gencode.v47.annotation.gtf.gz \
| awk '$1 !~ /^#/ && $3 == "exon" {print $1, $4, $5}' OFS='\t' \
| sort -k1,1 -k2,2n -k3,3n \
| bedtools merge -i - > exome.bed
ADD COMMENT
0
Entering edit mode

That worked, thank you very much

ADD REPLY
0
Entering edit mode

Don't forget to follow up on your threads. If an answer was helpful, you should upvote it; if the answer resolved your question, you should mark it as accepted. You can accept more than one answer if they all work. If an answer was not really helpful or did not work, provide detailed feedback so others know not to use that answer.

Upvote|Bookmark|Accept

ADD REPLY

Login before adding your answer.

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