aboutsummaryrefslogtreecommitdiff
path: root/src/score_wrapper.sh
blob: 8a5beb10275276e3542110c9311c955c579b6952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash


function clean_exit {

	kill -s 9 $pid
	exit
}
trap clean_exit SIGHUP SIGINT


echo "score_mers.py $1 $2 $3 $4 &"
score_mers.py $1 $2 $3 $4 
pid=$!

wait $pid