#!/bin/sh

export orig="$(pwd)"
export dir="$(dirname $0)"
create(){
cd $dir
mkdir imgs 
cd imgs
python3 ../data.py img || python ../data.py img || echo "You must install python3"
cd ..
mkdir graph
cd graph
python3 ../data.py depwid || python ../data.py depwid
python3 ../data.py nei || python ../data.py nei
cd ..
cd document
pdftex report.tex || echo "You must install \`pdftex\` (MacTeX, TeXLive, MikTeX, etc)"
cd ..
mkdir outputs
pdftex pics.tex
mv pics.pdf outputs/pics.pdf
pdftk document/report.pdf cat 1-end 11-12 15-16 output outputs/report.pdf
pdftk document/report.pdf cat 13-14 output outputs/tables.pdf
rm *.log
rm document/report.log
cp assets/* outputs/
cd $orig
}

create 2>/dev/null