Hi all-
I'm currently trying to annotate Ensembl ID of my RNAseq output with gene names with biomaRt and I use the function getBM. However, it keeps giving me the error: "no such table: metadata".
I guess it's not something wrong with my input since I have the same error even with the sample script provided in R documentation as shown below.
mart <- useMart(biomart = "ensembl", dataset = "hsapiens_gene_ensembl")
getBM(attributes = c("affy_hg_u95av2", "hgnc_symbol", "chromosome_name", "band"),
filters = "affy_hg_u95av2",
values = c("1939_at","1503_at","1454_at"),
mart = mart)
error: no such table: metadata
session info
R version 4.0.0 (2020-04-24) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows 10 x64 (build 18362)
other attached packages: [1] biomaRt_2.44.0
Thanks for the suggestion! But it gives the same error again. I'm wondering whether it's mart that causes the error. Do you have any suggestions on checking whether that works?