Entering edit mode
9.7 years ago
Is it possible that a gene is composed of exons without introns and only expresses as a lncRNA?
Is it possible that a gene is composed of exons without introns and only expresses as a lncRNA?
See A:
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";
Of course yes, indeed , some gene have more than one exon but only expresse as lncRNAs in plant.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
In other words, "Are there any lncRNAs with only one exon?"
Some well known lincRNAs (such as MALAT1) are single exonic. So technically yes.