# Script to extract columns from the output of Gavin's java UCS 
#
# col.	 value
# 1   	'AVERAGE'
# 2	'Accuracy:'
# 3	accuracy
# 4	accuracy upper 95% confidence limit
# 5	accuracy lower 95% confidence limit
# 6 	'AUCAccuracy:'
# 7	aucAccuracy
# 8	aucAccuracy upper 95% confidence limit
# 9	aucAccuracy lower 95% confidence limit
# 10	'Average-margin'
# 11	Average margin
# 12	Average margin upper 95% confidence limit
# 13	Average margin lower 95% confidence limit
#
# Below we extract the AVERAGE row(s) and then from it the columns for:
# accuracy, upper and lower 95% confidence limits
#
grep AVERAGE $1 |  cut -d ' ' -f 3,4,5
