why exon and intergenic region overlap
0
0
Entering edit mode
24 months ago
Binghong ▴ 20

I want to obtain the exons and intergenic region from package (TxDb.Hsapiens.UCSC.hg38.knownGene) using the code below

hg38_exons<-as.data.frame(exonsBy(txdb_38))

genic <- genes(TxDb.Hsapiens.UCSC.hg38.knownGene)
genic <- reduce(genic, ignore.strand=T)
hg38_intergenic <- gaps(genic)
hg38_intergenic <- hg38_intergenic[strand(hg38_intergenic) == "*"]

but I found that some exons and intergenic regions overlap, like

exon:chr1_108157462_108157620

intergenic region:chr1_107994608_108223340

is it right or something is wrong?

any guidance is appreciated!

intergenic exons region • 1.3k views
ADD COMMENT
1
Entering edit mode

exon and intron are from two alternative transcripts ?

ADD REPLY
0
Entering edit mode

thanks for your reply! what do the two alternative transcripts mean? Do you know how to check if they are from two alternative transcripts or not?

ADD REPLY
1
Entering edit mode

what do the two alternative transcripts mean?

LIFE

ADD REPLY
0
Entering edit mode

thanks! and do you know how to check if they are from two alternative transcripts or not?

ADD REPLY
1
Entering edit mode

see if you can print transcript names from the data frame, along with coordinates.

ADD REPLY
1
Entering edit mode

What may help to explain it is that there exists an alternative haplotype in the GRCh38 reference genome at this locus, i.e.,, chr1_KV880763v1_alt - see UCSC link

ADD REPLY
0
Entering edit mode

thanks for your reply!

ADD REPLY

Login before adding your answer.

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