Changes between Version 13 and Version 14 of cypress/SingularityDockerhub
- Timestamp:
- 03/27/2026 12:53:40 PM (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/SingularityDockerhub
v13 v14 63 63 64 64 {{{ 65 singularity pull docker://r-base:latest # creating .sif file takes ~ 6 minutes65 singularity pull docker://r-base:latest # creating .sif file takes ~1 minute 66 66 }}} 67 67 … … 100 100 }}} 101 101 102 To run it with the minimum test dataset, 103 Assuming the example dataset is extracted under /lustre/project/'''group/user'''/fastdtlmapper, where ''''group'''' is the group name and ''''user'''' is the user name, 102 To download the minimum test dataset, 103 104 {{{ 105 mkdir FastDTLmapper 106 cd FastDTLmapper 107 git init 108 git remote add origin -f https://github.com/moshi4/FastDTLmapper.git 109 git config core.sparseCheckout true 110 echo "/example/minimum_dataset" > .git/info/sparse-checkout 111 git pull origin main 112 cd .. # cd back to the parent folder 113 }}} 114 115 To run the example with the minimum test dataset, 116 assuming the example dataset is extracted under /lustre/project/'''group/user'''/FastDTLmapper, where ''''group'''' is the group name and ''''user'''' is the user name (Note: If you encounter '''!FileNotFoundError''', be sure to change /home/'''user''' as well.), 104 117 {{{ 105 118 export SINGULARITYENV_TMPDIR=/tmp 106 119 export SINGULARITY_BINDPATH=/lustre/project/group/user:/home/user,$TMPDIR:/tmp 107 singularity exec fastdtlmapper_latest.sif FastDTLmapper -i fastdtlmapper/example/minimum_dataset/fasta/ -t fastdtlmapper/example/minimum_dataset/species_tree.nwk -o fastdtlmapper/output_minimum120 singularity exec fastdtlmapper_latest.sif FastDTLmapper -i FastDTLmapper/example/minimum_dataset/fasta/ -t FastDTLmapper/example/minimum_dataset/species_tree.nwk -o FastDTLmapper/output_minimum 108 121 }}} 109 122
