The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

Getting Started with IDConverter

Overview

IDConverter converts identifiers within and between biological databases. Core use cases:

ID Conversion

library(IDConverter)

# TCGA sample ID → patient ID
convert_tcga("TCGA-02-0001-10")
#> [1] "TCGA-02-0001"

# ICGC specimen → donor
convert_icgc("SP29019")
#> [1] "DO13695"

# PCAWG specimen → donor
convert_pcawg("SP1677")
#> [1] "DO804"

Gene ID Conversion

# Symbol → Ensembl (human)
convert_hm_genes(c("TP53", "KRAS"), type = "symbol")

# Ensembl → Symbol (human)
convert_hm_genes("ENSG00000141510")

# Human → Mouse orthologs
convert_hm_orthologs(c("TP53", "KRAS"))

Gene Annotation Tables

# List available tables
ls_annotables()

# Load from Zenodo (fixed version, works offline)
grch38 <- load_data("grch38")

# Or build from Ensembl BioMart (latest, requires biomaRt + internet)
grch38_latest <- build_annotables("grch38", tx2gene = FALSE)

Working with Custom Databases

dt <- data.table::data.table(
  UpperCase = LETTERS[1:5],
  LowerCase = letters[1:5]
)
convert_custom(c("B", "C", "E"), from = "UpperCase", to = "LowerCase", dt = dt)
#> [1] "b" "c" "e"

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.