| summary | R Documentation | 
Object summaries
summary(object, ...)
## S4 method for signature 'GeneToSymbol'
summary(object)
## S4 method for signature 'TxToGene'
summary(object)
| object | Object. | 
| ... | Additional arguments. | 
Invisible NULL.
Updated 2019-11-19.
## GeneToSymbol ====
df <- S4Vectors::DataFrame(
    "geneId" = c(
        "ENSG00000228572.7",
        "ENSG00000182378.14"
    ),
    "geneName" = c(
        "AL954722.1",
        "PLCXD1"
    )
)
g2s <- GeneToSymbol(df)
summary(g2s)
## TxToGene ====
df <- S4Vectors::DataFrame(
    "txId" = c(
        "ENST00000635602.1",
        "ENST00000635506.1"
    ),
    "geneId" = c(
        "ENSG00000283061.1",
        "ENSG00000283061.1"
    )
)
t2g <- TxToGene(df)
summary(t2g)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.