Description Usage Arguments Value Examples
These methods tidy the results of differential expression analysis objects. Currently only 'limma' is supported.
1 | tidy.marray.lm(x, conf.int = TRUE, exponentiate = FALSE, ...)
|
x |
a differential expression fit object. Currently supports 'MArrayLM' from the 'limma' package. |
conf.int |
logical. Include confidence intervals? |
exponentiate |
logical. Should the estimates and (if 'conf.int' = 'TRUE') confidence intervals be exponentiated? |
... |
additional arguments |
a 'tbl'
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | counts <- readr::read_delim("data/GSE60450_Lactation-GenewiseCounts.txt", delim = "\t")
meta <- readr::read_delim("data/SampleInfo_Corrected.txt", delim = "\t") %>%
mutate(FileName = stringr::str_replace(FileName, "\\.", "-"))
id <- as.character(counts$EntrezGeneID)
out <- check_sample_names(counts, c(1,2), meta, FileName) %>%
purrr::pluck("mod_count") %>%
filter_genes(., id, "edgeR") %>%
make_voom(., my_design) %>%
model_limma() %>%
make_contrasts(Statuspregnant, Statusvirgin) %>%
model_bayes()
out %>% tidy.marray.lm()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.