Skip to content

Commit

Permalink
Updated dependencies to use URLs directly.
Browse files Browse the repository at this point in the history
  • Loading branch information
dakotablair committed Jun 4, 2024
1 parent 2698340 commit 04ea2f6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/rwrtools-env-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ cd RWRtoolkit
git reset --hard 360f33794f7d81c254b7d8d16ef7649d0412f790
R --no-restore --no-save << HEREDOC
require(devtools)
install_version("Matrix", version = "1.6-5", repos = "http://cran.us.r-project.org")
install_version("MASS", version = "7.3-60.0.1", repos = "http://cran.us.r-project.org")
install_version("igraph", version = "1.6.0", repos = "http://cran.us.r-project.org")
install_version("supraHex", version = "1.32.0", repos = "https://bioconductor.org/packages/3.14/bioc")
install_version("dnet", version = "1.1.7", repos = "http://cran.us.r-project.org")
install_url("https://cran.r-project.org/src/contrib/Archive/Matrix/Matrix_1.6-5.tar.gz")
install_url("https://cran.r-project.org/src/contrib/Archive/MASS/MASS_7.3-60.0.1.tar.gz")
install_url("https://cran.r-project.org/src/contrib/Archive/igraph/igraph_1.6.0.tar.gz")
install_url("https://bioconductor.org/packages/3.14/bioc/src/contrib/supraHex_1.32.0.tar.gz")
install_url("https://cran.r-project.org/src/contrib/Archive/dnet/dnet_1.1.7.tar.gz")
devtools::install()
HEREDOC

0 comments on commit 04ea2f6

Please sign in to comment.