/usr/share/gmod/chado/load/Build.PL is in libchado-perl 1.31-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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.31;
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;
|