#!/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 02ca 02cb 02oa 02ob
do
   # $i.c5 and $i.mbsl omitted for best 5 voting
   paste -d' ' $i.allis $i.igtree $i.maxent  \
               $i.mbl   $i.snow   $i.correct > vote.$i
done
exit 0
