use strict;
use lib 'lib';
use Bio::Chado::Builder;
use Data::Dumper;

my $VERSION    = 1.23;
my $conf       = shift;
my $m          = Bio::Chado::Builder->new(
  dist_name    => 'Chado', 
  dist_author  => 'Allen Day',
  dist_abstract => 'Supplemental Build script for Chado--not stand alone',
  dist_version => $VERSION, 
  load_conf    => $conf,
  module_name  => 'BioChado_supplemental',
);

print "initializing load scripts...\n";
# populates tt2 templates specified in load.conf
$m->dispatch('tokenize');

# can test by issuing a dispatch...
#$m->dispatch('refseq');

$m->create_build_script;
