```{r eval=FALSE} BiocManager::install('seandavi/MungeCuratedMGS')
```{r message=FALSE, warning=FALSE}
library(MungeCuratedMGS)
See working document for details of where we are headed.
Before running this vignette
```{r eval=FALSE} library(googlesheets) token = gs_auth() saveRDS(token, file = "/tmp/googlesheets_token.rds")
```{r sig_table_from_gs}
library(googlesheets)
suppressMessages(gs_auth(token = "/tmp/googlesheets_token.rds", verbose = FALSE))
sig_table = create_signatures_table()
head(sig_table)
```{r efo} efo = get_efo() head(efo)
### UBERON
```{r uberon}
uberon = get_uberon()
head(uberon)
Ontologies can be combined like so:
library(dplyr)
full_ontologies = dplyr::bind_rows(uberon, efo)
```{r taxon_names} taxon_dir = get_taxon_dump_files() taxon_id_names = get_taxon_names(taxon_dir) head(taxon_id_names, 10)
### Synonyms
```{r synonyms}
synonyms_dir = get_synonyms_file()
synonyms = get_synonyms(synonyms_dir)
head(synonyms, 10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.