Skip to content

Commit ef7ef25

Browse files
committed
deploy for 1.0 release
1 parent 38e2f2f commit ef7ef25

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
.DS_Store
66
.Renviron
77
passwords.txt
8-
R/other/
8+
R/other/*.R
99
*.RDS

R/write_db_tables.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@ populate_db <- function() {
109109
select(-starts_with("log2fold_"))
110110
dte <- dte %>% rename(contrasts = contrast)
111111

112-
db[["dte"]] <- dte
112+
db[["dte"]] <- dte %>%
113+
group_by(contrasts) %>%
114+
mutate(padj = p.adjust(pvalue, method = "BH")) %>%
115+
ungroup()
113116

114117
dge <- readRDS(file.path(base_path, "dge_results.RDS")) %>%
115118
rename(contrasts = contrast)

database.RDS

5.79 MB
Binary file not shown.

0 commit comments

Comments
 (0)