Skip to contents

Map Ensembl release to GENCODE

Usage

mapEnsemblToGencode(release, organism = "Homo sapiens")

Arguments

release

integer(1). Ensembl release (e.g. 110).

organism

character(1). Scientific name of the organism. Currently only "Homo sapiens" and "Mus musculus" are supported.

Value

character(1). Corresponding GENCODE release identifier (e.g. "44" for human or "M33" for mouse).

Note

Updated 2026-05-31.

See also

  • https://www.gencodegenes.org/human/releases.html

  • https://www.gencodegenes.org/mouse/releases.html

  • mapGencodeToEnsembl().

Examples

## Homo sapiens.
mapEnsemblToGencode(110L, organism = "Homo sapiens")
#> Warning: NAs introduced by coercion
#> [1] "44"
## Mus musculus.
mapEnsemblToGencode(110L, organism = "Mus musculus")
#> [1] "M33"