#!/usr/bin/ksh
# combine: combine the results of the classifiers to files which
#          can be processed by vote or by other classifiers
# usage:   combine
# 20000103 erikt@uia.ua.ac.be

for i in 01ca 01cb 01oa 01ob
do
   paste -d' ' $i.allis $i.c5   $i.igtree $i.maxent  \
               $i.mbl   $i.mbsl $i.snow   $i.correct > vote.$i
done
exit 0
