Description Usage Format Details References See Also Examples
Table for translating between Ensembl, NCBI Entrez and HGNC symbol
human gene identifiers. Gene biotype, exonic gene length and proportion
GC-bases are also included. For more exhaustive annotation including gene
names, GO terms and so on, please refer to R Bioconductor packages
AnnotationDbi
and org.Hs.eg.db
.
1 |
An object of class data.frame
with 58219 rows and 7 columns.
Data is from GENCODE v26/GRCh38.p10. with NCBI Entrez identifiers matched using HGNC symbol against org.Hs.eg.db
package.
Carlson M. org.Hs.eg.db: Genome wide annotation for Human. R package version 3.7.0.
Harrow J, Frankish A, Gonzalez JM, Tapanari E, Diekhans M, Kokocinski F, et al. GENCODE: The reference human genome annotation for The ENCODE Project. Genome Res. 2012;22:1760-74.
1 2 3 4 5 6 7 8 9 10 | head(anno.orgHs)
dim(anno.orgHs)
colSums(apply(anno.orgHs, 2, is.na))
colSums(!apply(anno.orgHs[,1:4], 2, duplicated))
# some extremes
anno.orgHs[which.max(anno.orgHs$length),]
anno.orgHs[which.min(anno.orgHs$length),]
anno.orgHs[which.max(anno.orgHs$GC),]
anno.orgHs[which.min(anno.orgHs$GC),]
attributes(anno.orgHs)$genome
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.