Skip to content

Commit

Permalink
index html
Browse files Browse the repository at this point in the history
  • Loading branch information
GuangchuangYu committed Aug 15, 2024
1 parent 7fc9a09 commit 7222c13
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ md5:

hpo:
Rscript -e 'source("create-HPO.R")'

html:
Rscript -e 'rmarkdown::render("index.rmd")'
93 changes: 93 additions & 0 deletions index.html

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions index.rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Ontology Database"
author: "Maintained by YuLab-SMU"
output:
prettydoc::html_pretty:
theme: cayman
highlight: github
pdf_document:
toc: true
---


# Ontology SQLite

The sqlite files were generated by the [obolite](https://github.com/YuLab-SMU/obolite) package.

```{r echo=FALSE, results = 'asis'}
ff <- list.files(pattern='.gz')
url <- sprintf("%s/%s", "https://yulab-smu.top/DOSE", ff)
path <- sprintf("+ [%s](%s)", ff, url)
cat(path, sep="\n")
```

0 comments on commit 7222c13

Please sign in to comment.