Skip to content

Commit

Permalink
Update dependencies.R
Browse files Browse the repository at this point in the history
Update the dependencies installed for R to include MRIcrotome, a package for visualizing MRI data for publication.
  • Loading branch information
danhps authored and stebo85 committed Feb 8, 2024
1 parent 0259f7d commit 3e61058
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/rstudio/dependencies.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# R Script to install the dependencies
if("devtools" %in% rownames(installed.packages()) == FALSE) {install.packages("devtools")}
if("MRIcrotome" %in% rownames(installed.packages()) == FALSE) {devtools::install_github("Mouse-Imaging-Centre/MRIcrotome", upgrade_dependencies = FALSE)}
if("RMINC" %in% rownames(installed.packages()) == FALSE) {devtools::install_github("Mouse-Imaging-Centre/RMINC", upgrade_dependencies = FALSE)}
if("ProbBayes" %in% rownames(installed.packages()) == FALSE) {install.packages("ProbBayes")}
if("bayesplot" %in% rownames(installed.packages()) == FALSE) {install.packages("bayesplot")}
Expand All @@ -22,4 +23,4 @@ if("RcppCNPy" %in% rownames(installed.packages()) == FALSE) {install.packages("R
if("R.matlab" %in% rownames(installed.packages()) == FALSE) {install.packages("R.matlab")}
if("caret" %in% rownames(installed.packages()) == FALSE) {install.packages("caret", dependencies = TRUE)}
if("car" %in% rownames(installed.packages()) == FALSE) {install.packages("car")}
if("BayesFactor" %in% rownames(installed.packages()) == FALSE) {install.packages("BayesFactor", dependencies = TRUE)}
if("BayesFactor" %in% rownames(installed.packages()) == FALSE) {install.packages("BayesFactor", dependencies = TRUE)}

0 comments on commit 3e61058

Please sign in to comment.