-
Notifications
You must be signed in to change notification settings - Fork 6
/
README.Rmd
60 lines (46 loc) · 2.89 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
output:
github_document:
html_preview: false
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(fig.path = "man/figures/README_", warning=FALSE, message=FALSE, error=FALSE, echo = TRUE)
library(tidyverse)
submission_to_cran <- FALSE
```
# dyngen <img src="man/figures/logo.png" align="right" />
<!-- badges: start -->
[![CRAN Status](https://www.r-pkg.org/badges/version/dyngen)](https://cran.r-project.org/package=dyngen)
[![CRAN Downloads](https://cranlogs.r-pkg.org/badges/dyngen)](https://cran.r-project.org/package=dyngen)
[![DOI](https://img.shields.io/badge/doi-10.1038%2Fs41467--021--24152--2-green)](https://doi.org/10.1038/s41467-021-24152-2)
[![R-CMD-check](https://github.com/dynverse/dyngen/workflows/R-CMD-check/badge.svg)](https://github.com/dynverse/dyngen/actions?query=workflow%3AR-CMD-check)
[![Coverage Status](https://app.codecov.io/gh/dynverse/dyngen/branch/master/graph/badge.svg)](https://app.codecov.io/gh/dynverse/dyngen?branch=master)
<!-- badges: end -->
dyngen is a novel, multi-modal simulation engine for studying dynamic cellular processes at single-cell resolution. dyngen is more flexible than current single-cell simulation engines, and allows better method development and benchmarking, thereby stimulating development and testing of novel computational methods.
dyngen is now published (CC-BY, [doi:10.1038/s41467-021-24152-2](https://doi.org/10.1038/s41467-021-24152-2)). Run `citation("dyngen")` to obtain the corresponding citation information. All source code for reproducing the results in this manuscript are available on [GitHub](https://github.com/dynverse/dyngen_manuscript).
```{r out.width = '60%', echo = FALSE}
knitr::include_graphics("man/figures/overview.png")
```
## Installation
dyngen should work straight out of the CRAN box by running `install.packages("dyngen")`. Having said that, you should definitely configure a few system variables for optimal speed. Check the [installation guide](https://dyngen.dynverse.org/articles/installation.html) for more information!
## Getting started
Check out [this guide](https://dyngen.dynverse.org/articles/getting_started.html) on how to get started with dyngen. You can find more guides by clicking any of the links below:
```{r vignettes, results='asis', echo=FALSE}
vign <- list.files("vignettes", pattern = "*.Rmd", recursive = TRUE)
walk(
c(vign[!grepl("^advan", vign)], vign[grepl("^advan", vign)]),
function(file) {
title <-
read_lines(paste0("vignettes/", file)) %>%
keep(~grepl("^title: ", .)) %>%
gsub("title: \"(.*)\"", "\\1", .)
vignette_name <- gsub("\\.Rmd", "", file)
html_name <- gsub("\\.Rmd", ".html", file)
cat("* [", title, "](https://dyngen.dynverse.org/articles/", html_name, ")\n", sep = "")
}
)
```
## Latest changes
A full list of changes is available on our [changelog](https://dyngen.dynverse.org/news/index.html).