#!/bin/bash
set -e

pkg=kaptive

if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
fi

cp -a /usr/share/doc/${pkg}/examples/* "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"

gunzip -r *

echo "FIXME: Due to bug #970344 we are using single threaded mode (-t 1) here."
kaptive.py -t 1 -a exact_match.fasta -k /usr/share/${pkg}/reference_database/Klebsiella_k_locus_primary_reference.gbk -o output/test
echo "FIXME: Make sure to remove '-t 1' from the kaptive call once bug #970344 is fixed."
