#!/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



tar2bids_img=`shub-cache docker://khanlab/tar2bids:v0.0.5h`

echo "CMD: singularity run $SINGULARITY_OPTS $tar2bids_img $@"
singularity run $SINGULARITY_OPTS  $tar2bids_img $@

