As required by TACC, each job now clone the conda mapping environment into /tmp dir of the computation node, so the mapping pipeline don't need to I/O /work
These lines added to the sbatch template file
shell
conda create -p /tmp/mapping --clone mapping
conda init do not work in shell script, this worked as an replacement
source $(dirname $(which conda))/../etc/profile.d/conda.sh
conda activate /tmp/mapping