#!/bin/csh

# this is a test script that will run all of the Duluth 
# systems on subsets of the full Senseval-2 data. 
# run this to make sure that everything is installed ok

set sourcedir=Test-Spanish-2    # senseval-2 data (spanish)

# set the name of the testdir to whatever name you 
# would like to call the directories where your results
# will be stored

set testdir = Sval2-SP-

foreach key (6 7 8 9 10 X Y Z)

	setup Data/$sourcedir $testdir$key
	cd $testdir$key
	duluth$key LexSample stop.list token1.txt
	cd ..

end 
