#!/bin/csh -f

echo ""
echo "  blx - Call MSPcrunch and blixem in one go."
echo ""

if ($#argv != 2) then
  echo "  Usage: blx <sequence_file> <blast_output_file>"
  echo ""
  exit
endif

MSPcrunch -q $2 | blixem $1 - &
