Can a gene only expresses as a lncRNA?
2
0
Entering edit mode
9.1 years ago

Is it possible that a gene is composed of exons without introns and only expresses as a lncRNA?

lncRNA • 2.5k views
ADD COMMENT
0
Entering edit mode

In other words, "Are there any lncRNAs with only one exon?"

ADD REPLY
0
Entering edit mode

Some well known lincRNAs (such as MALAT1) are single exonic. So technically yes.

ADD REPLY
5
Entering edit mode
9.1 years ago
PoGibas 5.1k

The GENCODE v7 catalog of human long noncoding RNAs: Analysis of their gene structure, evolution, and expression

See A:

< image not found >

You can easily download gencode annotation and filter genes transcripts according the number of exons.

Clumsy but works:

curl -s "ftp://ftp.sanger.ac.uk/pub/gencode/Gencode_human/release_21/gencode.v21.long_noncoding_RNAs.gtf.gz" | 
    gunzip -c | 
    awk '($3=="exon") {print $12}' | 
    sort | uniq -c | 
   awk '($1 == 1) {print $2}' | head -n 5

"ENST00000313031.2";
"ENST00000313737.5";
"ENST00000313865.6";
"ENST00000317726.4";
"ENST00000319817.3";
ADD COMMENT
0
Entering edit mode
6.5 years ago
FeiZhao • 0

Of course yes, indeed , some gene have more than one exon but only expresse as lncRNAs in plant.

ADD COMMENT

Login before adding your answer.

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