add option to link by marker name instead of marker id (to link to GBrowse etc.)
[cview.git] / Build.PL
blobd96e16ce7785e6ecffd8f47e8e76d7c56b38bcf3
1 use strict;
2 use Module::Build;
4 my $build = Module::Build->new(
5     dist_name          => 'Cview',
7     # version number comes from this module
8     module_name        => 'CXGN::Cview::MapFactory',
10     dist_author        => 'Sol Genomics Network',
11     dist_abstract      => 'a comparative map viewer',
12     license            => 'perl',
13     create_makefile_pl => 'passthrough',
15     recursive_test_files => 1,
17     build_requires => {
18         #'CXGN::DB::Connection' => 0,
19         'Test::More'           => 0,
20     },
21     requires => {
22         perl => '5.10.0',
23         # depend on all of bioperl, because
24         ### 'Bio::Root::Version' => '1.5.2',
25         #'Bio::DB::GFF' => 0,
26         #'Bio::Restriction::Analysis' => 0,
27         #'Bio::SeqIO' => 0,
29         'Carp' => 0,
31         #     'CXGN::Configuration' => 0,
32         #     'CXGN::Cview' => 0,
33         #     'CXGN::Cview::Chromosome::AGP' => 0,
34         #     'CXGN::Cview::Chromosome::IL' => 0,
35         #     'CXGN::Cview::Chromosome::ITAG' => 0,
36         #     'CXGN::DB::Connection' => 0,
37         #     'CXGN::DB::Object' => 0,
38         #     'CXGN::Genomic::BACMarkerAssoc' => 0,
39         #     'CXGN::Genomic::Clone' => 0,
40         #     'CXGN::ITAG::Release' => 0,
41         #     'CXGN::Login' => 0,
42         #     'CXGN::Map' => 0,
43         #     'CXGN::Map::Tools' => 0,
44         #     'CXGN::Marker::Tools' => 0,
45         #     'CXGN::Page' => 0,
46         #     'CXGN::Page::FormattingHelpers' => 0,
47         #     'CXGN::People' => 0,
48         #     'CXGN::People::BACStatusLog' => 0,
49         #     'CXGN::People::UserMap' => 0,
50         #     'CXGN::Tools::WebImageCache' => 0,
52         'File::Temp'   => 0,
53         'List::Util'   => 0,
54     },
57 $build->create_build_script;