R/convert_pcawg.R

Defines functions convert_pcawg

Documented in convert_pcawg

#' Convert PCAWG Identifiers
#'
#' Run `data("pcawg_full")` or `data("pcawg_simple")` to see detail database for conversion.
#' The `pcawg_simple` database only contains PCAWG white-list donors.
#'
#' @inheritParams convert_custom
#' @param x A character vector to convert.
#' @param from Which identifier type to be converted.
#' For db "full", one of `r paste(colnames(pcawg_full), collapse = ", ")`.
#' For db "simple", one of `r paste(colnames(pcawg_simple), collapse = ", ")`.
#' @param to Identifier type convert to. Same as parameter `from`.
#' @param db Database, one of "full" (for `data("pcawg_full")`) or
#' "simple" (for `data("pcawg_simple")`).
#'
#' @return A character vector.
#' @export
#'
#' @examples
#' \donttest{
#' x <- convert_pcawg("SP1677")
#' x
#'
#' y <- convert_pcawg("DO804",
#'   from = "icgc_donor_id",
#'   to = "icgc_specimen_id", multiple = TRUE
#' )
#' y
#' }
#' \dontrun{
#' convert_pcawg("SA5213")
#' }
#' @testexamples
#' if (!is.null(x)) expect_equal(x, "DO804")
#' expect_error(convert_pcawg("SA5213"))
#' expect_error(convert_icgc("SP1677", from = "icgc_specimen_id", to = "icgc_specimen_id"))
#' expect_error(convert_icgc("SP1677", from = "icgc_specimen_id", to = "xx"))
#' if (!is.null(y)) expect_is(y, "data.table")
convert_pcawg <- function(x,
                          from = "icgc_specimen_id",
                          to = "icgc_donor_id",
                          db = c("full", "simple"),
                          multiple = FALSE) {
  db <- match.arg(db)
  db <- switch(db,
    full = "pcawg_full",
    simple = "pcawg_simple"
  )

  stopifnot(length(from) == 1L, length(to) == 1L)
  if (from == to) {
    stop("from and to cannot be same.")
  }

  dt <- load_data(db)
  if (is.null(dt)) {
    message("Failed converting the data.")
    return(invisible(NULL))
  }
  convert(dt, x, from, to, multiple)
}

Try the IDConverter package in your browser

Any scripts or data that you put into this service are public.

IDConverter documentation built on March 31, 2023, 10:25 p.m.