first commit

This commit is contained in:
Jean-Marie Mineau 2023-11-15 15:59:13 +01:00
commit cd1e91bb99
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
287 changed files with 86425 additions and 0 deletions

19
rasta_exp/quick_test_tool.sh Executable file
View file

@ -0,0 +1,19 @@
SIF_DIR=$1
TOOL=$2
if [[ -z "${SIF_DIR}" ]]; then
echo MISSING SIF_DIR parameter
echo 'usage: ./quick_test_tool.sh SID_DIR TOOL'
exit 1
fi
if [[ -z "${TOOL}" ]]; then
echo MISSING TOOL parameter
echo 'usage: ./quick_test_tool.sh SID_DIR TOOL'
exit 1
fi
mkdir -p "/tmp/RASTA/${TOOL}"
while read apk; do
python grunt-worker.py --base-dir "/tmp/RASTA/${TOOL}" --no-mark-done --keep-tmp-dir --no-write-to-couch --manual --task ${TOOL} --sha ${apk} --singularity --image-basedir ${SIF_DIR}
done <"apks_${TOOL}.txt"