Skip to content

Commit

Permalink
Update packages for plotting
Browse files Browse the repository at this point in the history
  • Loading branch information
flopezo authored Sep 13, 2022
1 parent e8b8c90 commit 601136d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions renv/install_packages_create_renv_snapshot.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
install.packages("renv")

renv::init(
project = "~/projects/2020_amel_bter_expression_nachrs",
bare = TRUE, restart = TRUE
Expand All @@ -12,9 +14,10 @@ load_cran_pkgs <- function(pkg) {
}

cran_pkgs <- c(
"devtools", "XML", "BiocManager", "tidyverse", "GGally", "ggtext",
"patchwork", "RColorBrewer", "pheatmap", "styler", "renv", "here"
"devtools", "XML", "BiocManager", "tidyverse", "GGally", "ggtext", "ggh4x",
"ggforce", "egg", "patchwork", "RColorBrewer", "styler", "here"
)

load_cran_pkgs(cran_pkgs)

load_bioconductor_pkgs <- function(pkg) {
Expand All @@ -29,9 +32,12 @@ bioconductor_pkgs <- c(
"biomaRt", "rhdf5", "tximport", "DESeq2", "apeglm", "RUVSeq", "limma",
"edgeR", "csaw", "vsn", "hexbin"
)

load_bioconductor_pkgs(bioconductor_pkgs)

Sys.setenv("R_REMOTES_NO_ERRORS_FROM_WARNINGS" = TRUE)
devtools::install_github("cttobin/ggthemr")

# renv::settings$r.version("3.6.1")

renv::snapshot()

0 comments on commit 601136d

Please sign in to comment.