Description Usage Arguments Value Examples
Get the DESeq2 or edgeR differential features.
1 | get_diff_results(experiment, data_type = c("tss", "tsr"), samples = "all")
|
experiment |
TSRexploreR object. |
data_type |
Either 'tss' or 'tsr'. |
samples |
A vector of sample names to analyze. |
List of differential features data.frames.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | data(TSSs)
sample_sheet <- data.frame(
sample_name=c(
sprintf("S288C_D_%s", seq_len(3)),
sprintf("S288C_WT_%s", seq_len(3))
),
file_1=rep(NA, 6), file_2=rep(NA, 6),
condition=c(
rep("Diamide", 3),
rep("Untreated", 3)
)
)
exp <- TSSs %>%
tsr_explorer(sample_sheet=sample_sheet) %>%
format_counts(data_type="tss") %>%
fit_de_model(~condition, data_type="tss", method="edgeR") %>%
differential_expression(
data_type="tss",
comparison_name="Diamide_vs_Untreated",
comparison_type="coef",
comparison=2
)
dr <- get_diff_results(exp, data_type="tss")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.