File Coverage

blib/lib/Bio/FastParsers/Blast.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Bio::FastParsers::Blast;
2             # ABSTRACT: Classes for parsing BLAST output
3             # CONTRIBUTOR: Aymeric NAOME <aymeric.naome@gmail.com>
4             $Bio::FastParsers::Blast::VERSION = '0.213510';
5 7     7   51 use strict;
  7         13  
  7         213  
6 7     7   37 use warnings;
  7         16  
  7         204  
7              
8 7     7   3363 use Bio::FastParsers::Blast::Table;
  7         29  
  7         335  
9 7     7   4674 use Bio::FastParsers::Blast::Xml;
  7         34  
  7         433  
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =head1 NAME
18              
19             Bio::FastParsers::Blast - Classes for parsing BLAST output
20              
21             =head1 VERSION
22              
23             version 0.213510
24              
25             =head1 SYNOPSIS
26              
27             # see Bio::FastParsers::Blast::Table
28             # see Bio::FastParsers::Blast::Xml
29              
30             =head1 DESCRIPTION
31              
32             Parsers for two BLAST output formats are available: tabular and XML.
33              
34             =head1 AUTHOR
35              
36             Denis BAURAIN <denis.baurain@uliege.be>
37              
38             =head1 CONTRIBUTOR
39              
40             =for stopwords Aymeric NAOME
41              
42             Aymeric NAOME <aymeric.naome@gmail.com>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2013 by University of Liege / Unit of Eukaryotic Phylogenomics / Denis BAURAIN.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =cut