source ./run_utils.sh

setup_conda_env

# get path of this script (to point to files within the same git repo)
proc_path="$(dirname "$(readlink -f "$0")")"

# run the processor with all arguments
processor=${proc_path}/../coordinator/ProcessorDeposition.py
printf "processor is %s\n\n" "$processor"
python "${processor}" "$@"
exit_code=$?

teardown_conda_env

exit $exit_code