View source: R/splicewiz_wrappers.R
run_ase_diff_analysis | R Documentation |
Perform ASE diff analysis using edgeR.
run_ase_diff_analysis(
x,
test_nom,
test_denom,
test_factor = "condition",
cutoff_lfc = 1,
cutoff_pval = 0.05,
cutoff_padj = 0.01,
regul_based_upon = 1,
n_thread = 1,
...
)
x |
an object of class |
test_nom |
// TO DO |
test_denom |
// TO DO |
test_factor |
refer to the argument |
cutoff_lfc |
minimal threshold for log2fold change, default 1 (2 fold). |
cutoff_pval |
minimal threshold for pvalue, default 0.05. P-value threshold will be applied only when
|
cutoff_padj |
minimal threshold for Padj, default 0.01. Padj threshold will be applied only when
|
regul_based_upon |
one of the numeric choices 1, 2, or 3. Default 1 i.e. categorized diff. ASE by pvalue and log2fc. if 1 ...
if 2 ...
if 3 ...
|
n_thread |
an integer, default 1, denoting number of threads to use for multitasking. |
... |
Other parameters passed to |
an object of class parcutils_se.
se <- SpliceWiz::SpliceWiz_example_NxtSE(novelSplicing = TRUE)
SpliceWiz::colData(se)$treatment <- rep(c("A", "B"), each = 3)
SpliceWiz::colData(se)$replicate <- rep(c("P","Q","R"), 2)
run_ase_diff_analysis(x = se, test_factor = "treatment", test_nom = "A" ,test_denom = "B", IRmode ="annotated")
run_ase_diff_analysis(x = se, test_factor = "treatment", test_nom = "A" ,test_denom = "B", IRmode ="annotated", cutoff_lfc = 0.6, cutoff_padj = 1, regul_based_upon = 2, n_thread = 2 )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.