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).
Examples
## Homo sapiens.
mapEnsemblToGencode(110L, organism = "Homo sapiens")
#> Warning: NAs introduced by coercion
#> [1] "44"
## Mus musculus.
mapEnsemblToGencode(110L, organism = "Mus musculus")
#> [1] "M33"