avoid repeating to build SIF image for Singularity: use local SIF image if an env variable LOCAL_SIF_PATH is set #30
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When I run the program in the cluster with Singularity, I found that it takes a long time to build a SIF image. And for another run, it again takes a long time to build image, it seems that the cached image in
.singularity
folder does not help. Here is the running time (330s)To avoid repeating to build the SIF image, I introduce an environment variable,
LOCAL_SIF_PATH
. If the variable is set, then pull the image and save as.sif
locally viaTo align with the existing code, if the env variable is unset, then just run as before.
After saving to a local SIF image, we can speed it up significantly --- only around 2 seconds for the same dataset.
devtools::install_github("szcf-weiya/babelwhale") Sys.setenv(LOCAL_SIF_PATH=getwd())