Nothing
library(dplyr)
library(readr)
raw <- read_tsv("data-raw/hgnc.gene.information.txt", col_types = "cccc")
colnames(raw) <- c("Gene.Symbol", "Cytoband", "Entrez.IDs","Ensembl")
gene.map <- raw %>% select(Gene.Symbol, Entrez.IDs, Cytoband, Ensembl)
gene.map <- as.data.frame(gene.map)
usethis::use_data(gene.map)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.