ncRNA search using biomaRt
1
0
Entering edit mode
Zhang,Jiexin ▴ 20
@zhangjiexin-3367
Last seen 8.6 years ago
United States

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

 

biomart ncrna • 1.2k views
ADD COMMENT
0
Entering edit mode
Thomas Maurel ▴ 800
@thomas-maurel-5295
Last seen 14 months ago
United Kingdom

Dear Jiexin,

The "refseq_ncrna" Ensembl gene mart filter only accept ids like "NR_XXXX" so this is why "MRPL45P2" is not working. I am afraid NR_033934 and NR_002834 returns nothing because these two ids are not mapped to any Ensembl Gene IDs at the moment.

Hope this helps,

Regards,

Thomas

ADD COMMENT

Login before adding your answer.

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