knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
Physicians and biologists like gene symbols and bioinformaticians hate'em. Why? For one thing, they change constantly and are given new names or aliases. For another, some get munged into dates when imported into spreadsheet programs - and not only Excel (Thank you \@karawoo for the picture!):
Myself (Levi speaking), I don't mind them. It's way easier to remember TP53 than to remember 7157 or ENSG00000141510. They're a fact of life. So Markus Riester and I wrote HGNChelper to make them a little more pleasant to bioinformaticians.
HGNChelper has several functions that seemed useful back in the day when we first wrote it, but really one has withstood the test of time and remained useful:
checkGeneSymbols(x, unmapped.as.na = TRUE, map = NULL, species = "human")
checkGeneSymbols
identifies HGNC human or MGI mouse gene symbols which are outdated or may have been mogrified by Excel or other spreadsheet programs. It returns a data.frame of the same number of rows as the input, with a second column indicating whether the symbols are valid and a third column with a corrected gene list.
library(HGNChelper) human = c("FN1", "tp53", "UNKNOWNGENE","7-Sep", "9/7", "1-Mar", "Oct4", "4-Oct", "OCT4-PG4", "C19ORF71", "C19orf71") checkGeneSymbols(human)
As you see, it even helps fix capitalization. How does it fix those Excel dates? I imported a column of all human gene symbols into Excel, then exported using a whole bunch of available date formats. Then I kept any that differed from the originals for HGNChelper's map.
Mouse genes work the same way, but you need to specify the argument species=mouse
:
checkGeneSymbols(c("1-Feb", "Pzp", "A2m", "E430008G22Rik"), species="mouse")
Mouse gene symbols containing any capital letter, except the first character, can not be
fixed. For example, 'E430008G22Rik' is a symbol for Abl1 gene, but we couldn't fix it. Suggestions welcome about how to build a more complete map of valid symbols. To be on the safe side, you could set unmapped.as.na = FALSE
to keep unrecognized symbols as-is and only correct ones that have a definitive correction.
HGNChelper does the following corrections:
Numbers 2 and 3 are done by comparing to a complete map of both valid and invalid but mappable symbols, shipped with HGNChelper:
dim(mouse.table) dim(hgnc.table)
These are a combination of manually generated Excel mogrifications that remain constant, and aliases that can become out of date with time.
Gene symbols are aliased much more frequently than I can update this package, like every day. We intentionally avoid automatic update of the map to maintain reproducibility, because the same code from the same version of HGNChelper could produce different results at any time with automatic map update. If you want the most current maps of aliases, you can either:
getCurrentHumanMap()
or getCurrentMouseMap()
function, and provide the returned result through the map=
argument of checkGeneSymbols()
, orAs mentioned above genes symbols are aliased very frequently. It is possible that a gene symbol which was earlier an alias is now an approved symbol. 'checkGeneSymbols()' by default will give out only the approved symbol of a gene. This can be an issue specifically when analyzing an older dataset which may be referencing to a previously aliased (now approved) gene symbol mapping to another approved symbol at that time. This can be checked with 'expand.ambiguous = TRUE' which gives out all the mapping of a gene symbol irrespective of whether it's an approved symbol.
checkGeneSymbols("AAVS1", expand.ambiguous = FALSE) checkGeneSymbols("AAVS1", expand.ambiguous = TRUE) checkGeneSymbols(c("Cpamd8", "Mug2"), species = "mouse", expand.ambiguous = FALSE) checkGeneSymbols(c("Cpamd8", "Mug2"), species = "mouse", expand.ambiguous = TRUE)
Please report any issues at https://github.com/waldronlab/HGNChelper/issues
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.