File: Build.PL

package info (click to toggle)
libchado-perl 1.23-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 23,976 kB
  • ctags: 10,378
  • sloc: xml: 192,540; sql: 165,945; perl: 28,339; sh: 101; python: 73; makefile: 46
file content (24 lines) | stat: -rw-r--r-- 599 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;