-
Notifications
You must be signed in to change notification settings - Fork 0
/
acronyms.qmd
47 lines (43 loc) · 1.66 KB
/
acronyms.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
# title: "Acronyms/Abbreviations"
title: Abbreviations and acronyms used in the workshop
format:
html: default
---
```{r list_acronyms, echo=FALSE}
#
# Add a new acronym here anywhere in the following list by following the syntax
#
acronyms <- c(
# Syntax:
#
# "ACRONYM" = "ACRONYM MEANING HERE", <- Don't forget the comma ; )
#
"PO" = "Plant Ontology",
"UBERON" = "Uber-anatomy ontology",
"DDBJ" = "DNA Databank of Japan",
"NCBI" = "National (USA) Center for Biotechnology Information",
"INSDC" = "International Nucleotide Sequence Database Collaboration",
"ENA" = "European Nucleotide Archive",
"GSC" = "Genomics Standards Consortium",
"ENVO" = "Environmental Ontology",
"EMBL" = "European Molecular Biology Laboratory",
"EMBL-EBI" = "EMBL's European Bioinformatics Institute",
"NCBO" = "National (USA) Center for Biomedical Ontology",
"OLS" = "Ontology Lookup Service",
"OBO" = "Open Biology and Biomedical Ontology",
"NMDC" = "National (USA) Microbiome Data Collaborative",
"MIxS" = "Minimal Information about any (x) Sequences",
"FAIR" = "Findable, Accessible, Interoperable and Reusable",
"NFDI" = "National (DE) Research Data Infrastructure"
)
```
```{r display_acronyms, echo=FALSE,results='asis'}
library(magrittr, quietly = TRUE)
tbl <- acronyms %>%
tibble::enframe(name = "Acronym", value = "Definition") %>%
dplyr::arrange(Acronym) %>%
knitr::kable(format = "pipe")
cat(tbl, "\n: {.striped .hover .fs-4}", sep = "\n")
```
*Missing an acronym?* This might benefit others, so please [fill an issue on our Gitlab](https://git.rwth-aachen.de/clavellab/workshop-biometadata-01/-/issues/new?issuable_template=new_acronym), we will add it soon!