-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuild.PL
44 lines (41 loc) · 1.31 KB
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
dist_name => 'MultiRepMacsChIPSeq',
module_name => 'MultiRepMacsChIPSeq',
dist_version_from => 'lib/Bio/MultiRepChIPSeq/Runner.pm',
dist_abstract => 'Multiple-replica multiple-condition Macs2 ChIPSeq wrapper',
dist_author => 'Timothy Parnell <timothy.parnell@hci.utah.edu>',
license => 'artistic_2',
meta_merge => {
resources => {
repository => 'https://github.com/HuntsmanCancerInstitute/MultiRepMacsChIPSeq'
}
},
configure_requires => {
'Module::Build' => 0.42,
},
requires => {
'Bio::ToolBox' => 2.01,
'Bio::DB::HTS' => 3.01,
'Bio::DB::Big' => 1,
'Data::Dumper' => 0,
'English' => 0,
'File::Basename' => 0,
'File::Copy' => 0,
'File::Path' => 0,
'File::Spec' => 0,
'File::Which' => 0,
'Getopt::Long' => 0,
'IO::File' => 0,
'List::Util' => 0,
'Parallel::ForkManager' => 1.19,
'Set::IntervalTree' => 0.11,
'Set::IntSpan::Fast' => 1.15,
'Statistics::Descriptive' => 3.0613,
},
);
$build->create_build_script;
exit 0;