How to integrate BioWeka into YALE

From BioWeka

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.

Workaround

A simple workaround to this problem is as follows:

  1. Extract the Java class files from the bioweka-X.Y.Z.jar JAR archive (located in the lib directory of your BioWeka installation directory):
    jar -xf bioweka-X.Y.Z.jar
  2. There should be a folder named bioweka. Add this folder to the weka.jar JAR archive (located in the installation directory of Weka):
    jar -uf weka.jar bioweka
  3. Copy the modified weka.jar into the lib subdirectory of the YALE installation directory.
  4. Copy all JAR archives from the lib subdirectory of the BioWeka installation directory into the lib subdirectory of the YALE installation directory - except the file bioweka-X.Y.Z.jar.

See also