dyngen {dyngen}R Documentation

dyngen: A multi-modal simulator for spearheading single-cell omics analyses

Description

A toolkit for generating synthetic single cell data.

Step 1, initialise dyngen model

Step 2, generate TF network

Step 3, add more genes to the gene network

Step 4, generate gene kinetics

Step 5, simulate the gold standard

Step 6, simulate the cells

Step 7, simulate cell and transcripting sampling

Step 8, convert to dataset

One-shot function

Data objects

Varia functions

Examples

model <- initialise_model(
  backbone = backbone_bifurcating()
)


model <- model %>%
  generate_tf_network() %>%
  generate_feature_network() %>%
  generate_kinetics() %>%
  generate_gold_standard() %>%
  generate_cells() %>%
  generate_experiment()
  
dataset <- wrap_dataset(model, format = "dyno")
# format can also be set to "sce", "seurat", "anndata" or "list"

# library(dynplot)
# plot_dimred(dataset)



[Package dyngen version 1.0.5 Index]