Hi,
For a given gene, I wanted to find which transcripts in ensembl are labelled 'Protein coding', which are labelled 'retained intron', etc.
I was using :
library(Biostrings) ## dna to rna
library(biomaRt)
ensembl = useMart("ensembl", dataset=
"hsapiens_gene_ensembl")
gb <- getBM(attributes=c("ensembl_transcript_id","transcript_start","transcript_end","ensembl_exon_id","exon_chrom_start","exon_chrom_end","strand","chromosome_name"),
filters = "ensembl_gene_id", values=ensembl_id, mart=ensembl)
=======================
but this doesn't give me the annotation for the various transcripts. Is there a way that I can get the annotations?