File Coverage

blib/lib/Bio/MUST/Drivers.pm
Criterion Covered Total %
statement 30 30 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod n/a
total 40 40 100.0


line stmt bran cond sub pod time code
1             package Bio::MUST::Drivers;
2             # ABSTRACT: Bio::MUST classes for driving external programs
3             # CONTRIBUTOR: Arnaud DI FRANCO <arnaud.difranco@gmail.com>
4             # CONTRIBUTOR: Amandine BERTRAND <amandine.bertrand@doct.uliege.be>
5             # CONTRIBUTOR: Loic MEUNIER <loic.meunier@doct.uliege.be>
6             $Bio::MUST::Drivers::VERSION = '0.193030';
7 5     5   25287197 use strict;
  5         42  
  5         149  
8 5     5   27 use warnings;
  5         10  
  5         182  
9              
10 5     5   1906 use Bio::MUST::Drivers::Blast;
  5         20  
  5         244  
11 5     5   2698 use Bio::MUST::Drivers::Hmmer;
  5         18  
  5         212  
12 5     5   2720 use Bio::MUST::Drivers::Cap3;
  5         31  
  5         210  
13 5     5   2851 use Bio::MUST::Drivers::CdHit;
  5         19  
  5         211  
14 5     5   2803 use Bio::MUST::Drivers::Exonerate;
  5         18  
  5         205  
15 5     5   3614 use Bio::MUST::Drivers::Exonerate::Aligned;
  5         91  
  5         326  
16 5     5   3050 use Bio::MUST::Drivers::ClustalO;
  5         18  
  5         194  
17 5     5   2870 use Bio::MUST::Drivers::Mafft;
  5         17  
  5         256  
18              
19             1;
20              
21             __END__
22              
23             =pod
24              
25             =head1 NAME
26              
27             Bio::MUST::Drivers - Bio::MUST classes for driving external programs
28              
29             =head1 VERSION
30              
31             version 0.193030
32              
33             =head1 SYNOPSIS
34              
35             # TODO
36              
37             =head1 DESCRIPTION
38              
39             External dependencies are installed automatically at first use if the C<brew>
40             executable is available in the C<$PATH>. Alternatively, dependencies can be
41             installed (either using C<apt-get>, C<brew> or manually) by the user prior or
42             after installing the distribution itself. C<brew> is the main command of the I<Homebrew> package manager L<https://brew.sh/>.
43              
44             Note that any test requiring a missing dependency is skipped when testing.
45              
46             =head1 AUTHOR
47              
48             Denis BAURAIN <denis.baurain@uliege.be>
49              
50             =head1 CONTRIBUTORS
51              
52             =for stopwords Arnaud DI FRANCO Amandine BERTRAND Loic MEUNIER
53              
54             =over 4
55              
56             =item *
57              
58             Arnaud DI FRANCO <arnaud.difranco@gmail.com>
59              
60             =item *
61              
62             Amandine BERTRAND <amandine.bertrand@doct.uliege.be>
63              
64             =item *
65              
66             Loic MEUNIER <loic.meunier@doct.uliege.be>
67              
68             =back
69              
70             =head1 COPYRIGHT AND LICENSE
71              
72             This software is copyright (c) 2013 by University of Liege / Unit of Eukaryotic Phylogenomics / Denis BAURAIN.
73              
74             This is free software; you can redistribute it and/or modify it under
75             the same terms as the Perl 5 programming language system itself.
76              
77             =cut