where to find mouse genome GRCm38/mm10 for biomart R
1
0
Entering edit mode
16 months ago
Alewa ▴ 170

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.
ensembl bioconductor mouse biomart • 1.6k views
ADD COMMENT
3
Entering edit mode
16 months ago
ATpoint 82k

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.

ADD COMMENT
1
Entering edit mode

thank you!

ensembl102 <- useEnsembl(biomart = 'genes', 
                       dataset = 'mmusculus_gene_ensembl',
                       version = 102)
ADD REPLY

Login before adding your answer.

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