I want to fetch Arabidospsis annotation via ensembl biomart R package, here is the example how I am trying to fetch it:
library("biomaRt")
species = athaliana
db = useMart(biomart = "plants_mart",paste(species,"_eg_gene",sep=""), host = "plants.ensembl.org")
features = getBM(attributes = c("ensembl_gene_id","external_gene_id","description","entrezgene","chromosome_name","start_position", "end_position"), filters = c("ensembl_gene_id"),values = rownames(dds), mart = ensembl)
>features
[1] ensembl_gene_id external_gene_id description entrezgene chromosome_name start_position end_position <0 rows> (or 0-length row.names)
its showing no entries, can anyone tell me why this is happening?
P.S.I tried with Oryza sativa as well, same issue with that as well
Recently similar questions have determined that there was some sort of temporary "timeout" issue. You may want to retry after some time/tomorrow.