2020-08-19 18:01:48 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# This script calls all other scripts to re-create the figures for the paper
|
|
|
|
|
|
|
|
mkdir fig
|
|
|
|
for job in 5024292 4296426 7488914 ; do
|
2020-09-03 18:45:37 +00:00
|
|
|
#./scripts/plot-single-job.py $job "fig/job-"
|
|
|
|
./scripts/plot-single-ks-jobs.py $job "fig/job-"
|
2020-08-19 18:01:48 +00:00
|
|
|
done
|
|
|
|
|
2020-08-20 10:48:27 +00:00
|
|
|
# Remove whitespace around jobs
|
|
|
|
# for file in fig/*.pdf ; do
|
|
|
|
# pdfcrop $file output.pdf
|
|
|
|
# mv output.pdf $file
|
|
|
|
# done
|