Changes between Version 8 and Version 9 of cypress/SingularityDockerhub
- Timestamp:
- 08/20/25 22:12:15 (8 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/SingularityDockerhub
v8 v9 21 21 }}} 22 22 23 == Building a container for Ubuntu ==23 == Example 1: Building a container for Ubuntu == 24 24 25 25 Load the module, … … 57 57 By default, the cache is stored in ~/.singularity; this location can be customized using the environmental variable SINGULARITY_CACHEDIR. A subcommand, singularity cache, can be used to manage the cache. 58 58 59 == Example : [https://github.com/moshi4/FastDTLmapper FastDTLmapper] == 59 60 == Example 2: Building a container including the latest version of R == 61 62 The first of this sequence of commands creates ‘r-base_latest.sif’, which is the Singularity Image. You can rename/transfer it as you like. 63 64 {{{ 65 singularity pull docker://r-base:latest # creating .sif file takes ~6 minutes 66 singularity shell -s /bin/bash r-base_latest.sif 67 Singularity> head -1 /etc/os-release 68 PRETTY_NAME="Debian GNU/Linux 13 (trixie)" 69 Singularity> Rscript -e 'R.version.string' 70 [1] "R version 4.5.1 (2025-06-13)" 71 Singularity> 72 }}} 73 74 == Example 3: [https://github.com/moshi4/FastDTLmapper FastDTLmapper] == 60 75 This tool depends on many python packages and requires both python2 and python3. Fortunately, the developer provides Docker Images so we can use it to generate a Singularity image. 61 76