We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38e2f2f commit ef7ef25Copy full SHA for ef7ef25
.gitignore
@@ -5,5 +5,5 @@
5
.DS_Store
6
.Renviron
7
passwords.txt
8
-R/other/
+R/other/*.R
9
*.RDS
R/write_db_tables.R
@@ -109,7 +109,10 @@ populate_db <- function() {
109
select(-starts_with("log2fold_"))
110
dte <- dte %>% rename(contrasts = contrast)
111
112
- db[["dte"]] <- dte
+ db[["dte"]] <- dte %>%
113
+ group_by(contrasts) %>%
114
+ mutate(padj = p.adjust(pvalue, method = "BH")) %>%
115
+ ungroup()
116
117
dge <- readRDS(file.path(base_path, "dge_results.RDS")) %>%
118
rename(contrasts = contrast)
database.RDS
5.79 MB
0 commit comments