concatDict {XNAString}R Documentation

Concatenate HELM-symbol custom dictionary with built-in HELM-symbol dictionary (xna_dictionary)

Description

Concatenate HELM-symbol custom dictionary with built-in HELM-symbol dictionary (xna_dictionary)

Usage

concatDict(
  custom_dict,
  default_dict = xna_dictionary,
  helm_colname = "HELM",
  type_colname = "type",
  symbol_colname = "symbol"
)

Arguments

custom_dict

custom HELM-symbol dictionary

default_dict

built-in HELM-symbol dictionary (xna_dictionary)

helm_colname

helm column name in custom dictionary

type_colname

type column name in custom dictionary

symbol_colname

symbol column name in custom dictionary

Value

data.table

Examples

my_dict <- data.table::data.table(
  HELM = c("[[B]]"),
  type = c("base"),
  symbol = c("B")
)
concatDict(my_dict)

[Package XNAString version 1.2.0 Index]