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


singularity run $SINGULARITY_OPTS `shub-cache docker://bids/validator:v1.5.7` $@
