@@ -52,6 +52,11 @@ You can then easily install, load, and use modules:
52
52
$ module load biocontainers/samtools
53
53
$ samtools
54
54
55
+ Or set a configuration value on the fly for any command:
56
+
57
+ .. code-block :: console
58
+
59
+ $ shpc install -c set:symlink_base:/tmp/modules biocontainers/samtools
55
60
56
61
The above assumes that you've installed the software, and have already
57
62
added the modules folder to be seen by your module software. If your module
@@ -174,11 +179,17 @@ variable replacement. A summary table of variables is included below, and then f
174
179
* - container_tech
175
180
- The container technology to use (singularity or podman)
176
181
- singularity
182
+ * - symlink_base
183
+ - If set, where you want to install a simplified module tree to using ``--symlink-tree ``
184
+ - $root_dir/symlinks
185
+ * - symlink_tree
186
+ - If set to true, ALWAYS generate a symlink tree given that a symlink base is defined regardless of ``--symlink-tree `` flag
187
+ - false
177
188
* - updated_at
178
189
- a timestamp to keep track of when you last saved
179
190
- never
180
191
* - default_version
181
- - A boolean to indicate generating a . version file (LMOD or lua modules only)
192
+ - A boolean to indicate whether a default version will be arbitrarily chosen, when multiple versions are available, and none is explicitly requested
182
193
- true
183
194
* - singularity_module
184
195
- if defined, add to module script to load this Singularity module first
@@ -233,6 +244,14 @@ variable replacement. A summary table of variables is included below, and then f
233
244
- All features default to null
234
245
235
246
247
+ Note that any configuration value can be set permanently by using ``shpc config ``
248
+ or manually editing the file, but you can also set config values "one off" as follows:
249
+
250
+ .. code-block :: console
251
+
252
+ $ shpc install -c set:symlink_base:/tmp/modules ghcr.io/autamus/clingo
253
+
254
+
236
255
These settings will be discussed in more detail in the following sections.
237
256
238
257
Features
@@ -359,6 +378,58 @@ you can add or remove entries via the config variable ``registry``
359
378
# Note that "add" is used for lists of things (e.g., the registry config variable is a list)
360
379
and "set" is used to set a key value pair.
361
380
381
+ Symlink Base
382
+ ------------
383
+
384
+ By default, your modules are installed to your ``module_base `` described above with a complete
385
+ namespace, meaning the container registry from where they arise. We do this so that the namespace
386
+ is consistent and there are no conflicts. However, if you want a simplified tree to install from,
387
+ meaning the module full names are _just_ the final container name, you can set the ``symlink_base ``
388
+ in your settings to a different root. For example, let's say we want to install a set of modules.
389
+ We can use the default ``symlink_base `` of ``$root_dir/symlinks `` or set our own ``symlink_base ``
390
+ in the settings.yaml. We could do:
391
+
392
+ .. code-block :: console
393
+
394
+ $ shpc install ghcr.io/autamus/clingo --symlink-tree
395
+ $ shpc install ghcr.io/autamus/samtools --symlink-tree
396
+
397
+ Then, for example, if you want to load the modules, you'll see the shorter names are
398
+ available!
399
+
400
+ .. code-block :: console
401
+
402
+ $ module use ./symlinks
403
+ $ module load clingo/5.5.1/module
404
+
405
+ This is much more efficient compared to the install that uses the full paths:
406
+
407
+ .. code-block :: console
408
+
409
+ $ module use ./modules
410
+ $ module load ghcr.io/autamus/clingo/5.5.1/module
411
+
412
+ Since we install based on the container name *and * version tag, this even gives you
413
+ the ability to install versions from different container bases in the same root.
414
+ If there is a conflict, you will be given the option to exit (and abort) or continue.
415
+ Finally, if you need an easy way to run through the containers you've already installed
416
+ to create the links:
417
+
418
+
419
+ .. code-block :: console
420
+
421
+ for module in $(shpc list); do
422
+ shpc install $module --symlink-tree
423
+ done
424
+
425
+ And that will reinstall the modules you have installed, but in their symlink tree location.
426
+
427
+
428
+ .. warning ::
429
+
430
+ Be cautious about creating symlinks in containers or other contexts where a bind
431
+ could eliminate the symlink or make the path non-existent.
432
+
362
433
363
434
Module Names
364
435
------------
0 commit comments