Hi,
I am using biomaRt to extract genomic locations for genes of interest. I found that it doesn't work on ncRNAs. For example, I have MRPL45P2 in my gene list, couldn't find anything.
> x <- 'MRPL45P2'
> addCol <- c('refseq_ncrna','chromosome_name','start_position','end_position','strand','band')
> getBM(attributes=addCol,filters=addCol[1],values=x,mart=ensembl)
[1] refseq_ncrna chromosome_name start_position end_position
[5] strand band
<0 rows> (or 0-length row.names)
So I thought maybe I need to provide "NR_XXXX" value for it to work, still no.
> x <- 'NR_033934'
> addCol <- c('refseq_ncrna','chromosome_name','start_position','end_position','strand','band')
> getBM(attributes=addCol,filters=addCol[1],values=x,mart=ensembl)
[1] refseq_ncrna chromosome_name start_position end_position
[5] strand band
<0 rows> (or 0-length row.names)
I even tried the one shown in user guide of biomaRt: NR_002834
> x <- 'NR_002834'
> addCol <- c('refseq_ncrna','chromosome_name','start_position','end_position','strand','band')
> getBM(attributes=addCol,filters=addCol[1],values=x,mart=ensembl)
[1] refseq_ncrna chromosome_name start_position end_position
[5] strand band
<0 rows> (or 0-length row.names)
Would someone please give me some suggestions on how to do it?
Thanks a bunch,
Jiexin