Hi Michael,
This seems to work for additional user specified bind paths:
SINGULARITY_BIND_BASE="/home,/tmp"
SINGULARITY_BIND_EXPR = ifThenElse(isUndefined(TARGET.SingularityBind), \
$(SINGULARITY_BIND_BASE), \
join(",", $(SINGULARITY_BIND_BASE), TARGET.SingularityBind))
where the submit file adds an optional new attribute SingularityBind e.g.
...
+SingularityImage="/local/paul/singularity/image"
+SingularityBind="/mnt/data,/local"
queue 1
Though there is probably a better of writing this configuration.
Thanks,
Paul