#!/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-English-2    # senseval-2 data

# 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-ENG-

foreach key (1 2 3 4 5 A B C)

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

end 
