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             $Bio::FastParsers::Blast::VERSION = '0.201110';
4 7     7   49 use strict;
  7         15  
  7         228  
5 7     7   48 use warnings;
  7         13  
  7         173  
6              
7 7     7   3285 use Bio::FastParsers::Blast::Table;
  7         27  
  7         315  
8 7     7   4319 use Bio::FastParsers::Blast::Xml;
  7         41  
  7         330  
9              
10             1;
11              
12             __END__
13              
14             =pod
15              
16             =head1 NAME
17              
18             Bio::FastParsers::Blast - Classes for parsing BLAST output
19              
20             =head1 VERSION
21              
22             version 0.201110
23              
24             =head1 SYNOPSIS
25              
26             # see Bio::FastParsers::Blast::Table
27             # see Bio::FastParsers::Blast::Xml
28              
29             =head1 DESCRIPTION
30              
31             Parsers for two BLAST output formats are available: tabular and XML.
32              
33             =head1 AUTHOR
34              
35             Denis BAURAIN <denis.baurain@uliege.be>
36              
37             =head1 COPYRIGHT AND LICENSE
38              
39             This software is copyright (c) 2013 by University of Liege / Unit of Eukaryotic Phylogenomics / Denis BAURAIN.
40              
41             This is free software; you can redistribute it and/or modify it under
42             the same terms as the Perl 5 programming language system itself.
43              
44             =cut