Description Usage Arguments Details Value References Examples
Fits weighted linear models to test for differential activity in MPRA data.
1 2 3 |
object |
An object of class |
design |
Design matrix specifying comparisons of interest. The
number of rows of this matrix should equal the number of columns
in |
aggregate |
Aggregation method over barcodes: |
normalize |
If |
block |
A vector giving the sample designations of the columns of
|
model_type |
Indicates whether an unpaired model fit
( |
plot |
If |
... |
Further arguments to be passed to |
Using method_type = "corr_groups"
use the
duplicateCorrelation
function from the limma
package to
estimate the intra-replicate correlation of log-ratio values.
An object of class MArrayLM
resulting from the eBayes
function.
Myint, Leslie, Dimitrios G. Avramopoulos, Loyal A. Goff, and Kasper D. Hansen. Linear models enable powerful differential activity analysis in massively parallel reporter assays. BMC Genomics 2019, 209. doi: 10.1186/s12864-019-5556-x.
Law, Charity W., Yunshun Chen, Wei Shi, and Gordon K. Smyth. Voom: Precision Weights Unlock Linear Model Analysis Tools for RNA-Seq Read Counts. Genome Biology 2014, 15:R29. doi: 10.1186/gb-2014-15-2-r29.
Smyth, Gordon K., Jo\"elle Michaud, and Hamish S. Scott. Use of within-Array Replicate Spots for Assessing Differential Expression in Microarray Experiments. Bioinformatics 2005, 21 (9): 2067-75. doi: 10.1093/bioinformatics/bti270.
1 2 3 4 5 6 7 8 | data(mpraSetAggExample)
design <- data.frame(intcpt = 1,
episomal = grepl("MT", colnames(mpraSetAggExample)))
mpralm_fit <- mpralm(object = mpraSetAggExample, design = design,
aggregate = "none", normalize = TRUE,
model_type = "indep_groups", plot = FALSE)
toptab <- topTable(mpralm_fit, coef = 2, number = Inf)
head(toptab)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.