Entering edit mode
4 months ago
Picasa
▴
650
Hi I use to retrieve symbol from ENSEMBL id using this function:
resOrdered$symbol <- mapIds(org.Hs.eg.db,
keys=row.names(resOrdered),
column="SYMBOL",
keytype="ENSEMBL",
multiVals="first")
but it only works with the hg38 genome. Is there an alternative with the T2T genome and annotation ?
T2T assembly is available via
Ensembl
rapid release, if you need Ensembl ID: https://rapid.ensembl.org/Homo_sapiens_GCA_009914755.4/Info/IndexSo the only way is to write a script that extract the symbol from the gtf file ?