We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b329312 commit d504d4eCopy full SHA for d504d4e
2 files changed
data-raw/container_scripts/container_build_command.txt
@@ -0,0 +1,2 @@
1
+# The whole build process can take about 1 hour
2
+singularity build --fakeroot msighdp.sif msighdp.def
data-raw/container_scripts/msighdp.def
@@ -0,0 +1,15 @@
+Bootstrap: docker
+From: r-base:4.2.1
3
+
4
+%post
5
+ apt-get update
6
7
+ # Install system dependencies for mSigHdp
8
+ apt-get -y install libcurl4-openssl-dev libxml2-dev
9
10
+ # Specify path for installing R libraries inside container
11
+ Rscript -e '.libPaths("/usr/local/lib/R/site-library")'
12
13
+ # Install R package mSigHdp
14
+ Rscript -e 'install.packages(pkgs = "remotes")'
15
+ Rscript -e 'remotes::install_github(repo = "steverozen/mSigHdp", ref = "v2.1.2-branch")'
0 commit comments