eu.bootstrep.newbiolex
Class Main

java.lang.Object
  extended by eu.bootstrep.newbiolex.Main

public class Main
extends java.lang.Object

This class contains the main method. This class needs to be included in the project. If you want to run this application from the command line without Ant. You need to type java -jar "/netProjects/BLDB/dist/BLDB.jar"

******************

To run the jar you need to create the following folder structure:
Config
inFiles
outFiles
outFiles/tgtDir

All the folders above have to be sub folder of the folder you run the command java -jar from.
You need to save your BioLexicon.properties file in the Config directory.
You need to place your input files in the inFiles directory.
Output files are stored in outFiles and its sub folder.
However, these folders need not to have the name above. The only constraint is that their names need to be passed as input parameters.


Constructor Summary
Main()
          Void constructor: creates a new instance of Main Class
 
Method Summary
static void main(java.lang.String[] args)
          The main method executes the following steps:
The main method uses the following setting: args[0]="inFiles"; // Directory containing the input files args[1]="outFiles"; // Directory containing the output files.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Main

public Main()
Void constructor: creates a new instance of Main Class

Method Detail

main

public static void main(java.lang.String[] args)
The main method executes the following steps:
The main method uses the following setting:
The main method instantiates the Process class.
NB
The main method is invoked without input parameters and the length of the args vector is set to five (5). If you run the main with input parameters you need to comment out the instruction
args=new String[5].
Be careful that the setting for the first five elements of the args vector is mandatory. This setting is used by the Process class.
You can change the setting of the directories, but you should be conformant with your directory structure

Parameters:
args - the command line arguments