Skip to content

Commit

Permalink
deploy for 1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrittoborges committed Dec 21, 2023
1 parent 38e2f2f commit ef7ef25
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
.DS_Store
.Renviron
passwords.txt
R/other/
R/other/*.R
*.RDS
5 changes: 4 additions & 1 deletion R/write_db_tables.R
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,10 @@ populate_db <- function() {
select(-starts_with("log2fold_"))
dte <- dte %>% rename(contrasts = contrast)

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

dge <- readRDS(file.path(base_path, "dge_results.RDS")) %>%
rename(contrasts = contrast)
Expand Down
Binary file modified database.RDS
Binary file not shown.

0 comments on commit ef7ef25

Please sign in to comment.