Standardise gene symbols to HGNC.
map_genes_dt(
  dat,
  gene_col = "gene_symbol",
  fill_na = TRUE,
  verbose = TRUE,
  ...
)data.table
character column name.
logical. Fill NAs with original gene symbol.
logical. Print messages.
Arguments passed on to orthogene::map_genes
genesGene list.
speciesSpecies to map against.
targettarget namespace.
mthresholdmaximum number of results per initial alias to show. Shows all by default.
drop_naDrop all genes without mappings.
Sets gprofiler2::gconvert(filter_na=) as well
an additional round of more comprehensive NA filtering
by orthogene.
numeric_nsnamespace to use for fully numeric IDs (list of available namespaces).
run_map_speciesStandardise species names with
map_species first (Default: TRUE).
data.table
if (FALSE) { # \dontrun{
dat <- data.table(gene_symbol = c("BRCA1","BRCA2","BRCA3"))
dat2 <- map_genes_dt(dat)
} # }