Changes between Version 13 and Version 14 of cypress/SingularityDockerhub


Ignore:
Timestamp:
03/27/2026 12:53:40 PM (4 months ago)
Author:
Carl Baribault
Comment:

Added detail to supply test data

Legend:

Unmodified
Added
Removed
Modified
  • cypress/SingularityDockerhub

    v13 v14  
    6363
    6464{{{
    65 singularity pull docker://r-base:latest  # creating .sif file takes ~6 minutes
     65singularity pull docker://r-base:latest  # creating .sif file takes ~1 minute
    6666}}}
    6767
     
    100100}}}
    101101
    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,
     102To download the minimum test dataset,
     103
     104{{{
     105mkdir FastDTLmapper
     106cd FastDTLmapper
     107git init
     108git remote add origin -f https://github.com/moshi4/FastDTLmapper.git
     109git config core.sparseCheckout true
     110echo "/example/minimum_dataset" > .git/info/sparse-checkout
     111git pull origin main
     112cd ..  # cd back to the parent folder
     113}}}
     114
     115To run the example with the minimum test dataset,
     116assuming 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.),
    104117{{{
    105118export SINGULARITYENV_TMPDIR=/tmp
    106119export 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_minimum
     120singularity exec fastdtlmapper_latest.sif FastDTLmapper -i FastDTLmapper/example/minimum_dataset/fasta/ -t FastDTLmapper/example/minimum_dataset/species_tree.nwk -o FastDTLmapper/output_minimum
    108121}}}
    109122