#!/bin/bash


execpath=`dirname $0`
execpath=`realpath $execpath`


source ${NEUROGLIA_BASH_LIB}
if [ ! "$?" = 0 ]
then
	echo "Error initializing neuroglia-helpers, quitting $0"
	exit 1
fi


dicom2tar_img=`shub-cache shub://khanlab/dicom2tar:v0.0.5`

singularity run $SINGULARITY_OPTS -B $SCRATCH:/tmp $dicom2tar_img $@
