convertGenesBetweenSpeciesHomologs

convertGenesBetweenSpeciesHomologs(x, ...)

Arguments

x

Character vector or matrix with mouse gene symbols to convert. If a matrix, rownames should be gene symbols.

from

One of "hg" or "mm"

to

One of "hg" or "mm"

Examples

convertGenesBetweenSpeciesHomologs(c("TUBB", "NES"), "hg", "mm")
#> [1] "Nes" "Tubb5"
mat1 <- matrix(seq(1, 15), nrow = 3) rownames(mat1) <- c("Gfap", "Fabp7", "Foo") convertGenesBetweenSpeciesHomologs(mat1, from = "mm")
#> [,1] [,2] [,3] [,4] [,5] #> GFAP 1 4 7 10 13 #> FABP7 2 5 8 11 14