3 # This is a Module::Build script for Bioperl installation.
4 # See http://search.cpan.org/~kwilliams/Module-Build/lib/Module/Build.pm
6 # Uses a custom subclass of Module::Build called ModuleBuildBioperl that
7 # doesn't get installed
9 # In the future developers may need to alter the requires and recommends and
10 # possibly Network sections of ModuleBuildBioperl->new() below, but otherwise
11 # nothing else here is likely to need changing.
14 use ModuleBuildBioperl
;
18 # Set up the ModuleBuildBioperl object
19 my $build = ModuleBuildBioperl
->new(
21 dist_name
=> 'bioperl',
22 dist_version_from
=> 'Bio/Root/Version.pm',
23 dist_author
=> 'Bioperl Team <bioperl-l@bioperl.org>',
24 dist_abstract
=> 'Bioinformatics Toolkit',
25 license
=> 'artistic',
30 'Scalar::Util' => 0 # not in Perl 5.6.1, arrived in core in 5.7.3
34 'Module::Build' => 0.2805,
35 'Test::Harness' => 2.62,
38 recommends
=> { # does what you would expect of recommends, except more informative output and generates optional_features in META.yml
39 'Ace' => '0/access of ACeDB database/Bio::DB::Ace,Bio::DB::GFF::Adaptor::ace',
40 # this won't actually install due to circular dep, but we have no way of doing a post-install
41 'Bio::ASN1::EntrezGene' => '0/parsing entrezgene/Bio::SeqIO::entrezgene',
42 # we actually need 1.01 of Class::AutoClass, but unfortunately it is versioned as 1.0
43 'Class::AutoClass' => '1/creating objects/Bio::Graph::SimpleGraph,Bio::Graph::SimpleGraph::Traversal,Bio::Graph::ProteinGraph',
44 'Clone' => '0/cloning objects/Bio::Graph::ProteinGraph,Bio::Tools::Primer3',
45 'Convert::Binary::C' => '0/strider functionality/Bio::SeqIO::strider',
46 'Data::Stag::XMLWriter' => '0/writing choas xml files/Bio::SeqIO::chaosxml',
47 'GD' => '1.3/rendering Sequences and Features/Bio::Graphics::Glyph*',
48 'GD::SVG' => '0/creating SVG images/Bio::Graphics::Panel',
49 # we specifically want Graph::Directed, but that has no VERSION
50 'Graph' => '0/ontology engine implementation for the GO parser/Bio::Ontology::SimpleGOEngine::GraphAdaptor',
51 'HTML::Entities' => '0/remote analysis POST submissions/Bio::SearchIO::blastxml',
52 'HTML::Parser' => '3/screen scraping www.gdb.org/Bio::DB::GDB',
53 'HTTP::Request::Common' => '0/GenBank+GenPept sequence retrieval, remote http Blast jobs/Bio::DB::*,Bio::Tools::Run::RemoteBlast,Bio::Tools::Analysis::Protein*,Bio::Tools::Analysis::DNA*',
54 'LWP::UserAgent' => '0/remote access/Bio::DB::*,Bio::Tools::Run::RemoteBlast,Bio::Tools::WebBlat,Bio::WebAgent,Bio::Graphics::Glyph::image',
55 'PostScript::TextBlock' => '0/EPS output/Bio::Tree::Draw::Cladogram',
56 'Set::Scalar' => '0/proper operation/Bio::Tree::Compatible',
57 'SOAP::Lite' => '0/XEMBL Services and Bibliographic queries/Bio::DB::XEMBLService,Bio::DB::Biblio::soap',
58 'Spreadsheet::ParseExcel' => '0/parsing Excel files/Bio::SeqIO::excel',
59 'Storable' => '2.05/storing sequence objects in local file cache/Bio::DB::FileCache,Bio::SeqFeature::Collection,Bio::PopGen::HtSNP,Bio::PopGen::TagHaplotype,Bio::DB::GFF::Adaptor::berkeleydb',
60 'SVG' => '2.26/SVG output/Bio::Graphics::Pictogram',
61 'SVG::Graph' => '0.01/creating SVG images/Bio::TreeIO::svggraph',
62 'Text::Shellwords' => '0/test scripts/Bio::Graphics',
63 'URI::Escape' => '0/dealing with web resources/Bio::Tools::WebBlat,Bio::FeatureIO::gff,Bio::FeatureIO::interpro,Bio::DB::Biblio::eutils,Bio::DB::EUtilities::Cookie,Bio::DB::Query::GenBank,Bio::DB::NCBIHelper,Bio::SeqFeature::Annotated',
64 'XML::DOM::XPath' => '0.13/parsing interpro features/Bio::FeatureIO::interpro',
65 'XML::Parser' => '0/parsing xml/Bio::Biblio::IO::medlinexml',
66 'XML::Parser::PerlSAX' => '0/parsing xml/Bio::SeqIO::tinyseq,Bio::SeqIO::game::gameSubs,Bio::OntologyIO::InterProParser,Bio::ClusterIO::dbsnp',
67 'XML::SAX' => '0.15/parsing xml/Bio::SearchIO::blastxml,Bio::SeqIO::tigrxml,Bio::SeqIO::bsml_sax',
68 'XML::SAX::Writer' => '0/writing xml/Bio::SeqIO::tigrxml',
69 'XML::Twig' => '0/parsing xml/Bio::Variation::IO::xml,Bio::DB::Taxonomy::entrez,Bio::DB::Biblio::eutils,Bio::Graph::IO::psi_xml',
70 'XML::Writer' => '0.4/parsing and writing xml/Bio::SeqIO::agave,Bio::SeqIO::game::gameWriter,Bio::SeqIO::chadoxml,Bio::SeqIO::tinyseq,Bio::Variation::IO::xml,Bio::SearchIO::Writer::BSMLResultWriter'
73 network
=> { } # not actually used by anything yet, but in the future say perl Build.PL --network
76 BioDBSeqFeature_BDB
=> {
77 description
=> "BDB tests for Bio::DB::SeqFeature::Store",
78 feature_requires
=> { 'DB_File' => 0 } # feature_requires is like requires, execpt that it doesn't trigger installation
81 description
=> "BioDBGFF database tests (will need to answer questions before really enabling)",
82 feature_requires
=> { 'DBI' => 0 },
83 excludes_os
=> ['mswin'],
84 test
=> \
&test_biodbgff
# ModuleBuildBioperl unique requirement that after everything else succeeds, supplied code ref must also return undef
86 BioDBSeqFeature_mysql
=> {
87 description
=> "MySQL tests for Bio::DB::SeqFeature::Store",
88 feature_requires
=> { 'DBI' => 0, 'DBD::mysql' => 0 },
91 # The following code works, but since no tests in the test suite actually make use of this functionality, don't use it yet
93 # description => "Enable tests that need an internet connection",
94 # requires => { 'LWP::UserAgent' => 0 },
95 # options => ['network'], # ModuleBuildBioperl unique requirement that --network was supplied
96 # test => \&ModuleBuildBioperl::test_internet
100 create_makefile_pl
=> 'passthrough'
102 #pm_files => {} # modules in Bio are treated as if they were in lib and auto-installed
103 #script_files => [] # scripts in scripts directory are installed on-demand
106 # Handle auto features
107 if ($build->feature('BioDBSeqFeature_BDB')) {
110 if ($build->feature('BioDBSeqFeature_mysql')) {
114 $build->notes(network
=> $build->feature('Network'));
115 # then in test script:
117 # my $build = Module::Build->current;
118 # my $do_network_tests = $build->notes('network');
122 $build->choose_scripts;
123 prompt_for_biodbgff
() if $build->feature('BioDBGFF');
125 # Request that some scripts run post-installation
126 $build->add_post_install_script('maintenance/symlink_script.pl'); # takes a unix file path regardless of local OS
128 # Add extra things to MANIFEST.SKIP
129 $build->add_to_manifest_skip('bioperl.lisp', 'Bio/Tools/WebBlat.pm');
131 # Create the build script and exit
132 $build->create_build_script;
138 my $path0 = File
::Spec
->catfile('t', 'BioDBSeqFeature.t');
139 my $path = File
::Spec
->catfile('t', 'BioDBSeqFeature_BDB.t');
140 open my $F, ">$path";
142 system 'perl $path0 -adaptor berkeleydb -create 1 -temp 1';
145 $build->add_to_cleanup($path);
146 $build->add_to_manifest_skip($path);
150 eval {require DBI
;}; # if not installed, this sub won't actually be called
151 unless (eval {DBI
->connect('dbi:mysql:test',undef,undef,{RaiseError
=>0,PrintError
=>0})}) {
152 return "Could not connect to test database";
158 my $path0 = File
::Spec
->catfile('t', 'BioDBSeqFeature.t');
159 my $path = File
::Spec
->catfile('t', 'BioDBSeqFeature_mysql.t');
162 system 'perl $path0 -adaptor DBI::mysql -create 1 -temp 1 -dsn test';
165 $build->add_to_cleanup($path);
166 $build->add_to_manifest_skip($path);
170 eval {require DBI
;}; # if not installed, this sub won't actually be called
171 @drivers = DBI
->available_drivers;
172 unless (grep {/mysql|Pg|Oracle/i} @drivers) {
173 return "MySQL, Pg nor Oracle DBI drivers are installed";
178 sub prompt_for_biodbgff
{
179 my $proceed = $build->y_n("Do you want to run the BioDBGFF live database tests? y/n", 'n');
183 foreach my $poss ('mysql', 'Pg', 'Oracle') {
184 if (grep {/$poss/i} @drivers) {
186 $choice =~ s/^(.)/[$1]/;
187 push(@driver_choices, $choice);
192 if (@driver_choices > 1) {
193 my ($default) = $driver_choices[0] =~ /\[(.)/;
194 $driver = $build->prompt("Which database driver should be used? ".join(" ", @driver_choices), $default);
197 ($driver) = $driver_choices[0] =~ /\[(.)/;
199 if ($driver =~ /^[mM]/) {
202 elsif ($driver =~ /^[pP]/) {
205 elsif ($driver =~ /^[oO]/) {
209 my $test_db = $build->prompt("Which database should I use for testing the $driver driver?", 'test');
210 my $test_host = $build->prompt("On which host is database '$test_db' running (hostname, ip address or host:port)", 'localhost');
211 my $test_user = $build->prompt("User name for connecting to database '$test_db'?", 'undef');
212 my $test_pass = $build->prompt("Password for connecting to database '$test_db'?", 'undef');
215 if ($test_host eq 'undef' || $test_host eq 'localhost') {
220 if ($driver eq 'Pg') {
221 $test_dsn = "dbi:$driver:dbname=$test_db";
224 $test_dsn = "dbi:$driver:database=$test_db";
227 $test_dsn .= ";host=$test_host";
230 $build->notes(dbd_driver
=> $driver);
231 $build->notes(test_db
=> $test_db);
232 $build->notes(test_host
=> $test_host);
233 $build->notes(test_user
=> $test_user eq 'undef' ?
undef : $test_user);
234 $build->notes(test_pass
=> $test_pass eq 'undef' ?
undef : $test_pass);
235 $build->notes(test_dsn
=> $test_dsn);
237 $build->log_info(" - will run the BioDBGFF tests with database driver '$driver' and these settings:\n",
238 " Database $test_db\n",
239 " Host $test_host\n",
241 " User $test_user\n",
242 " Password $test_pass\n");
245 $build->log_info(" - will not run the BioDBGFF live database tests\n");
248 $build->log_info("\n");