| 1 | non_null_sim(counts, condition, pi0, beta_args = list(betapi, betamu, betasd))
 | 
| counts | G*N null count matrix, rows are genes and columns are samples | 
| args | List of arguments, including
 | 
| 1 2 3 4 5 6 7 8 9 10 11 12 | library(singleCellRNASeqMouseZeiselBrain)
eset <- get(data(MouseZeiselBrain))
counts <- exprs(eset)
counts_null <- makeSimCount2groups(counts,
                                   Ngenes = 1000,
                                   Nsamples = 20,
                                   sample_method = "all_genes")
counts_sim <- non_null_sim(counts_null$counts,
                           counts_null$condition,
                           pi0 = .5,
                           beta_args = args.big_normal())
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.