-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
58 lines (57 loc) · 2.11 KB
/
Makefile.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'SNVPhyl',
EXE_FILES => [ 'bin/snv_matrix.pl' ,
'bin/consolidate_vcfs.pl',
'bin/core-only.pl',
'bin/extract_snvs_metaalign.pl',
'bin/filter-positions.pl',
'bin/filter-stats.pl',
'bin/filter_unique_basepairs.pl',
'bin/filterVcf.pl',
'bin/find-positions-used.pl',
'bin/find-repeats.pl',
'bin/positions2phyloviz.pl',
'bin/positions2snv_alignment.pl',
'bin/positions2snv_invariant_alignment.pl',
'bin/rearrange_snv_matrix.pl',
'bin/ref_stats.pl',
'bin/reporter.pl',
'bin/snv_matrix.pl',
'bin/tsvToVcf.pl',
'bin/vcf2snv_alignment.pl',
'bin/verify_excess_coverage.pl',
'bin/verify_low_depth.pl',
'bin/verify_mapping_quality.pl'
],
LICENSE => 'apache',
PL_FILES => {},
MIN_PERL_VERSION => '5.006',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
BUILD_REQUIRES => {
'Test::More' => '0',
},
TEST_REQUIRES => {
'Template' => '2.27',
'Text::Diff' => '1.45',
},
PREREQ_PM => {
'Bio::Perl' => '1.007001',
'List::MoreUtils' => '0.419',
'JSON' => '2.94',
'JSON::Parse' => '0.49',
'Math::Round' => '0.07',
'Text::CSV' => '1.95',
'Parallel::ForkManager' => '1.19',
'Hash::Merge' => '0.200',
'String::Util' => '1.26',
'Bio::Phylo' => '0.58',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'snvphyl-*' },
);