How to integrate BioWeka into YALE
From BioWeka
[edit]
Introduction
YALE (Yet Another Learning Environment) is GUI application similar to Weka. It also uses the Weka filters and classifiers. However, it is not possible to integrate other Weka extensions into YALE without writing code.
[edit]
Workaround
A simple workaround to this problem is as follows:
- Extract the Java class files from the
bioweka-X.Y.Z.jarJAR archive (located in thelibdirectory of your BioWeka installation directory):jar -xf bioweka-X.Y.Z.jar
- There should be a folder named
bioweka. Add this folder to theweka.jarJAR archive (located in the installation directory of Weka):jar -uf weka.jar bioweka
- Copy the modified
weka.jarinto thelibsubdirectory of the YALE installation directory. - Copy all JAR archives from the
libsubdirectory of the BioWeka installation directory into thelibsubdirectory of the YALE installation directory - except the filebioweka-X.Y.Z.jar.
[edit]

