Description Usage Arguments Value See Also Examples
View source: R/data_geNormalisationFiltering.R
Convert gene identifiers
| 1 2 3 4 5 6 7 | convertGeneIdentifiers(
  annotation,
  genes,
  key = "ENSEMBL",
  target = "SYMBOL",
  ignoreDuplicatedTargets = TRUE
)
 | 
| annotation | 
 | 
| genes | Character: genes to be converted | 
| key | Character: type of identifier used, e.g.  | 
| target | Character: type of identifier to convert to; read
 | 
| ignoreDuplicatedTargets | Boolean: if  | 
Character vector of the respective targets of gene identifiers. The
previous identifiers remain other identifiers have the same target (in case
ignoreDuplicatedTargets = TRUE) or if no target was found.
Other functions for gene expression pre-processing: 
filterGeneExpr(),
normaliseGeneExpression(),
plotGeneExprPerSample(),
plotLibrarySize(),
plotRowStats()
| 1 2 3 4 5 6 7 8 | if ( require("org.Hs.eg.db") ) {
    columns(org.Hs.eg.db)
    genes <- c("ENSG00000012048", "ENSG00000083093", "ENSG00000141510",
               "ENSG00000051180")
    convertGeneIdentifiers(org.Hs.eg.db, genes,
                           key="ENSEMBL", target="SYMBOL")
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.