From 15ae290c58ce5d979891d8711ac85c174676d395 Mon Sep 17 00:00:00 2001 From: xies4 Date: Wed, 4 Dec 2024 12:28:31 -0500 Subject: [PATCH] Correct a typo --- docs/exec_cmd_sif.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/exec_cmd_sif.md b/docs/exec_cmd_sif.md index c7118d8..77dd114 100644 --- a/docs/exec_cmd_sif.md +++ b/docs/exec_cmd_sif.md @@ -13,7 +13,7 @@ The command line above will create a file named `r_env_v1.0.0.sif`. The suffix ` Using the command line below, you can get the packages installed and the corresponding version information: ``` -singularity build r_env_v1.0.0.sif R -e 'ip = as.data.frame(installed.packages()[,c(1,3:4)]); ip = ip[is.na(ip$Priority),1:2,drop=FALSE];ip' +singularity exec r_env_v1.0.0.sif R -e 'ip = as.data.frame(installed.packages()[,c(1,3:4)]); ip = ip[is.na(ip$Priority),1:2,drop=FALSE];ip' ``` Step 2: Run the command line