thank you!
ensembl102 <- useEnsembl(biomart = 'genes',
dataset = 'mmusculus_gene_ensembl',
version = 102)
• 0 views
•
link
how can i find and use mouse Genome assembly: GRCm38/mm10 for biomart query in R?
library(biomaRt)
ensemblGRCm38 <- biomaRt::useEnsembl(biomart = 'genes',
dataset = 'mmusculus_gene_ensembl',
version = 'GRCm38')
I tried this but gets error
Error: Specified Ensembl version is not available.
Use listEnsemblArchives() to view available versions.
You need the Ensembl version, see https://www.ensembl.org/info/website/archives/assembly.html and search for "Mouse". GRCm38 was the genome build until v102. From v103 on it was GRCm39, so using version=102 (or "102", not sure if you need quotes), should do it.
thank you!
ensembl102 <- useEnsembl(biomart = 'genes',
dataset = 'mmusculus_gene_ensembl',
version = 102)
version 102 seems to be no longer available as 5 years have passed ( https://www.ensembl.org/info/website/archives/index.html ) Is there any other place to use GRCm38?
Log in to answer this question.