Mapping Mouse gene names to Human gene names
4
6
Entering edit mode
8.8 years ago
Ron ★ 1.2k

Hi,

I have PDX expression data,and I calculated the fpkms of human and mouse reads separately. I want to look at the expression levels of mouse genes in the human reads.

So I have to convert the mouse gene names to human gene names.

I looked at this post, but there is not much information present here.

Best,
Ron

RNA-Seq PDX • 31k views
ADD COMMENT
0
Entering edit mode

What type of id's do you have? Ensembl, UCSC, Unigene, RefSeq, HUGO?

ADD REPLY
0
Entering edit mode

I have gene symbols.Can I just convert them to Upper Case?for e.g Psarp gene in mouse is present as PSARP in humans.

I found lot of genes as such.

ADD REPLY
0
Entering edit mode

In general yes, names are equal just putting in uppercase all letters. For missing genes you can check them individually in UCSC Genome Browser or Ensembl if they are a few.

ADD REPLY
1
Entering edit mode

Don't do this. Although most orthologous genes between human and mouse share the same gene symbol, this may not always be true especially if the symbols come from different genome annotations (e.g. different versions of Ensembl or Ensembl vs NCBI). A mouse gene and a human gene may share the same symbol and not be orthologous for various reasons. The proper way is to map genes by orthology. There have already been several posts on the subject, including the one you've linked to.

ADD REPLY
0
Entering edit mode

ok, I agree, names could be the same but the genes could be non-orthologs. A list of precomputed pairs will be better.

ADD REPLY
5
Entering edit mode
ADD COMMENT
2
Entering edit mode
2.1 years ago
DareDevil ★ 4.3k

You can try following function:

musGenes <- c("Hmmr", "Tlx3", "Cpeb4")

### Basic function to convert mouse to human gene names
convertMouseGeneList <- function(x){

require("biomaRt")
human = useMart("ensembl", dataset = "hsapiens_gene_ensembl")
mouse = useMart("ensembl", dataset = "mmusculus_gene_ensembl")

genesV2 = getLDS(attributes = c("mgi_symbol"), filters = "mgi_symbol", values = x , mart = mouse, attributesL = c("hgnc_symbol"), martL = human, uniqueRows=T)
humanx <- unique(genesV2[, 2])

### Print the first 6 genes found to the screen
print(head(humanx))
return(humanx)
}

convertMouseGeneList(musGenes)
ADD COMMENT
1
Entering edit mode
6.9 years ago

In case someone comes across this (as I just did): this can be done using Ensembl biomart.
E.g. select Mouse genes database, and under attributes > homologous you select your species of interest.

ADD COMMENT
1
Entering edit mode

The homologs given by genomax are rather strict - for instance, GZMB doesn't map to Gzmb. Here's instructions for how to get orthologous genes from biomart (obtain a flat file via web interface). http://www.ensembl.info/blog/2009/01/21/how-to-get-all-the-orthologous-genes-between-two-species/

If anyone has example code to do this using biomaRt I would be very interested.

ADD REPLY
0
Entering edit mode

Per HGNC guidelines proper way to represent human gene names is by using upper case letters and numbers. These also apply to some other vertebrate genomes.

Since the table (the link above has been updated, Aug 2017).

ADD REPLY
0
Entering edit mode

I thought the HGNC guidelines only apply to human. As far as I know, the mouse nomenclature has the first letter capitalized followed by lower case letters. Have there been recent changes to the official nomenclatures for model organisms ?

ADD REPLY
1
Entering edit mode

You are correct in case of mouse. These are the guidelines for mouse gene names.

VGNC is managing names for chimpanzee, horse, cow and dog based on orthology to humans.

ADD REPLY
0
Entering edit mode
ADD REPLY
0
Entering edit mode

By extension, biomart package in R.

ADD REPLY
0
Entering edit mode
19 months ago
Cenk Celik • 0

nichenetr package can easily convert mouse to human:

library(nichenetr)

mmGenes <- c('Ms4a1', 'Cd8a')
hsaGenes <- convert_human_to_mouse_symbols(mmGenes)

or human to mouse

hsaGenes <- c('MS4A1', 'CD8A')
mmGenes <- convert_mouse_to_human_symbols(hsaGenes)
ADD COMMENT

Login before adding your answer.

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