get_diff_results | R Documentation |
Get the DESeq2 or edgeR differential features.
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.
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.