#!/bin/sh
#
# Script illustrating one way to call the loader.  Argument to 
# this script is the username/password for oracle.
#
# Copyright (C) 2002 SRI International
#
ENZYME=/home/rosemary1/bio/databases/KEGG/released/ligand/enzyme
COMPOUND=/home/rosemary1/bio/databases/KEGG/released/ligand/compound
GENES=/home/rosemary1/bio/databases/KEGG/released/genes
GENOME=/home/rosemary1/bio/databases/KEGG/released/genome
export ENZYME COMPOUND GENES GENOME
./kegg-loader -u $1 -o $GENOME -g $GENES -c $COMPOUND -e $ENZYME
