We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 377da19 commit 68f9132Copy full SHA for 68f9132
csv_convert/convert_campaign.slurm.sh
@@ -18,10 +18,10 @@ echo "[INFO] Running convert_campaign.py in $(hostname)"
18
echo "[INFO] Campaign directory : $CAMPAIGN"
19
echo "[INFO] Container image : $IMG"
20
echo "[INFO] CSV_CONVERT_DIR : $CSV_CONVERT_DIR"
21
-echo "[INFO] Log file : $SLURM_OUTPUT"
+
22
23
# Bind the whole campaign so script sees reco/ inside /work
24
singularity exec -B "$CAMPAIGN":/work -B "$CSV_CONVERT_DIR":/code "$IMG" \
25
- python3 /code/convert_campaign.py /work --submit
+ bash -c 'cd /code && python3 convert_campaign.py /work'
26
27
echo "[DONE] Conversion job finished"
0 commit comments