Good morning, I’ve been using R and the bioconductor bioMart package to make queries of long gene-ID lists for 3’ UTRs using getBM(). Until recently this has worked fine. Unfortunately during the past week the response time per query has been around 15-30s. Here is the setup:
library("biomaRt")
> ensembl <- useMart(biomart = "ENSEMBL_MART_ENSEMBL",
+ host = "www.ensembl.org",
+ path = "/biomart/martservice",
+ dataset = "mmusculus_gene_ensembl")
> attrib = c("ensembl_gene_id", "ensembl_transcript_id", "3utr")
> filts = "ensembl_gene_id"
And the response:
system.time(getBM(attrib, filters = filts, + values = "ENSMUSG00000066475", mart = ensembl)) user system elapsed 0.03 0.00 29.89
Our network connection seems fine and I think the bottleneck is on the database end. I’m therefore interested in installing bioMart locally. Again, my goal here is to run the same command but to access a database locally in the interest of time. Is bioMart 0.8 and the instructions here: http://www.biomart.org/other/rc6_documentation.pdf what I am looking for? Thanks for your help.
-Josh
--
You received this message because you are subscribed to the Google Groups "biomart-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to biomart-user...@googlegroups.com.
Visit this group at http://groups.google.com/group/biomart-users.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "biomart-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to biomart-user...@googlegroups.com.
Visit this group at http://groups.google.com/group/biomart-users.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "biomart-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to biomart-user...@googlegroups.com.
Visit this group at http://groups.google.com/group/biomart-users.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "biomart-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to biomart-user...@googlegroups.com.
Visit this group at http://groups.google.com/group/biomart-users.
For more options, visit https://groups.google.com/groups/opt_out.