view abyss/abyss_wrapper.sh @ 4:a188de29f06e

Uploaded
author g2cmnty@test-web1.g2.bx.psu.edu
date Tue, 28 Jun 2011 10:29:09 -0400
parents
children
line wrap: on
line source

#!/bin/bash

if [ $# -ne 3 ]
then
    echo "ERROR: Expected exactly 3 arguments; got: $*" 1>&2
    exit 1
fi

CMD=`ABYSS -k$1 $2 -o $3 2>&1`
if [ $? -ne 0 ]
then
{
    echo "COMMAND FAILURE: $CMD" 1>&2
    exit $?
}
fi