#!/bin/sh

# file: $NEDC_NFC/bin/nedc_eval_eeg
#
# This is a simple driver script for the NEDC scoring tools.
#

# set an appropriate environment variable for the root node of the source code.
# 
NEDC_NFC=/data/isip/tools/master/nfc/util/python/nedc_eval_eeg/v5.0.0;
export NEDC_NFC;

# add this tool to the Python library path
#
PYTHONPATH=$NEDC_NFC/lib:.;
export PYTHONPATH;

# execute the tool
#
python $NEDC_NFC/src/nedc_eval_eeg.py $*;

#
# end of file
