#!/bin/tcsh 

# General purpose tool to create a ELAN EAF file from a basic BPF file

# annotConv version >= 0.6

set SCRIPT = `readlink -f "$0"`
set SOURCE = `dirname "$SCRIPT"`  # location where the script is stored 
                           # (even if we start via a symbolic link)
setenv LANG en_US.UTF-8  # defines the behavior of text processing, sorting etc.

python3 $SOURCE/mausbpf2eaf.py $*

exit $status

