Description Usage Arguments Value Examples
Get the DESeq2 or edgeR model.
1 | get_diff_model(experiment, data_type = c("tss", "tsr"))
|
experiment |
TSRexploreR object. |
data_type |
Either 'tss' or 'tsr'. |
DESeq2 or edgeR differential expression model.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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")
dm <- get_diff_model(exp, data_type="tss")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.