aboutsummaryrefslogtreecommitdiff
path: root/src/score_wrapper.sh
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-03-26 21:05:25 -0400
committerCalvin Morrison <mutantturkey@gmail.com>2014-03-26 21:05:25 -0400
commit495228f7167a6df24a139022e7a0560a4dd07b56 (patch)
treeca163ce70968410ebbe30291c2c90aaec92da9b1 /src/score_wrapper.sh
parentf6fe059e37d8e8ee0cb6f7acf72c8918473ad3f7 (diff)
majorly rewrite and revamp the script to support runnign parts at a time
Diffstat (limited to 'src/score_wrapper.sh')
-rwxr-xr-xsrc/score_wrapper.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/score_wrapper.sh b/src/score_wrapper.sh
index 4e1a6bd..1c6f856 100755
--- a/src/score_wrapper.sh
+++ b/src/score_wrapper.sh
@@ -5,13 +5,11 @@ function clean_exit {
echo -e "\nInterrupt caught. Exiting cleanly..."
echo "killing $pid"
kill -11 $pid
- sleep 1
+ sleep .5
exit
}
trap clean_exit SIGINT
-
-echo "score_mers.py $1 $2 $3 $4 &"
score_mers.py $1 $2 $3 $4 & </dev/null
pid=$!