Description Usage Arguments Value Author(s) References See Also Examples
View source: R/sim_fixInputDist.R
This function simulates an MPRA dataset with specified means and sds across the tags for each allele.
| 1 | sim_fixInputDist(mean_A, mean_B, std_A, std_B, sigma2_DNA_a0, sigma2_DNA_a1, sigma2_RNA_a0, sigma2_RNA_a1, ntag = 33, nsim = 100, nrep = 5, measurementERROR = TRUE, slope)
 | 
| mean_A | The mean of the true input counts across tags for the reference allele. | 
| mean_B | The mean of the true input counts across tags for the mutant allele. | 
| std_A | The standard devaition of the true input counts across tags for the reference allele. | 
| std_B | The standard devaition of the true input counts across tags for the mutant allele. | 
| sigma2_DNA_a0 | This parameter and the  | 
| sigma2_DNA_a1 | This parameter and the  | 
| sigma2_RNA_a0 | This parameter and the  | 
| sigma2_RNA_a1 | This parameter and the  | 
| ntag | An integer indicating the number of tags/barcodes for each oligonucleotide (oligos) or each allele. | 
| nsim | An integer indicating the number of simulations or number of SNPs included in the dataset. | 
| nrep | An integer indicating the number of replicates. | 
| measurementERROR | A logical value indicating whether there is randomness in the observed input counts for each tag/barcode. If FALSE, the true input count is used for all DNA replicates. Otherwise, TRUE (default). | 
| slope | A numeric vector of length 2* | 
| datt | A simulated data frame with ntag*nsim*2 number of rows and 2+nrep*2 number of columns. The first two columns are the allele and SNP name for each tag. The other columns are the generated DNA or RNA counts for the nrep replicates. | 
Dandi Qiao
Qiao, D., Zigler, C., Cho, M.H., Silverman, E.K., Zhou, X., et al. (2018). Statistical considerations for the analysis of massively parallel reporter assays data.
| 1 2 3 4 5 6 | nsim = 10
ntag = 10
slope=c(rep(1, ntag*nsim), rep(1.5, ntag*nsim)) 
nrep=5
fixInput  = c(20, 120, 20, 120)
simData = sim_fixInputDist(mean_A=fixInput[1], mean_B=fixInput[2], std_A=fixInput[3], std_B=fixInput[4],  sigma2_DNA_a0=0.001, sigma2_DNA_a1=0.23, sigma2_RNA_a0=0.18, sigma2_RNA_a1=35,  ntag=ntag, nsim=nsim, nrep=nrep, slope=slope)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.