forked from dynverse/dynverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
38 lines (30 loc) · 1.53 KB
/
README.Rmd
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
# dynverse
**dynverse** is created to support the development, execution, and benchmarking of trajectory inference methods. Check out our preprint on bioRxiv:
Wouter Saelens\*, Robrecht Cannoodt\*, Helena Todorov, Yvan Saeys. “A comparison of single-cell trajectory inference methods: towards more accurate and robust tools”. bioRxiv (Mar. 2018). DOI: [10.1101/276907](https://doi.org/10.1101/276907).
\*: Equal contribution
dynverse consists of several subpackages:
```{r, echo = FALSE, warning=FALSE, error=FALSE, message = FALSE}
library(tidyverse)
df <- tribble(
~Repo, ~Description,
"dynalysis", "Scripts to reproduce manuscript",
"dynwrap", "Common wrapping functionality",
"dynmethods", "Wrappers for trajectory inference methods",
"dyneval", "Metrics and evaluation pipeline",
"dyngen", "Generator of synthetic datasets",
"dynnormaliser", "Common normalisation functionality",
"dyntoy", "Quick generator of small toy datasets",
"dynplot", "Common visualisation functionality",
"dynutils", "Various common functions"
) %>%
mutate(
Package = glue::glue("[{Repo}](https://github.com/dynverse/{Repo})"),
Status = ifelse(Repo %in% c("dynwrap", "dynmethods", "dynplot", "dynutils", "dynnormaliser", "dyntoy"), glue::glue("[](https://travis-ci.org/dynverse/{Repo})"), "Coming soon")
) %>%
select(Package, Status, Description)
knitr::kable(df)
```