File Coverage

blib/lib/Bio/FastParsers/Constants.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             # ABSTRACT: Distribution-wide constants for Bio::FastParsers
2             $Bio::FastParsers::Constants::VERSION = '0.221230';
3             use strict;
4 7     7   46 use warnings;
  7         14  
  7         191  
5 7     7   34  
  7         12  
  7         178  
6             use Const::Fast;
7 7     7   2771  
  7         7194  
  7         49  
8             use Exporter::Easy (
9             OK => [ qw(:files) ],
10 7         58 TAGS => [
11             files => [ qw($EMPTY_LINE $COMMENT_LINE) ],
12             ],
13             );
14 7     7   3389  
  7         9192  
15             # regexes for parsing files
16              
17             # common
18             const our $EMPTY_LINE => qr{\A\s*\z}xms;
19             const our $COMMENT_LINE => qr{\A(\#)\s*(.*)}xms;
20              
21             1;
22              
23              
24             =pod
25              
26             =head1 NAME
27              
28             Bio::FastParsers::Constants - Distribution-wide constants for Bio::FastParsers
29              
30             =head1 VERSION
31              
32             version 0.221230
33              
34             =head1 DESCRIPTION
35              
36             Nothing to see here.
37              
38             =head1 AUTHOR
39              
40             Denis BAURAIN <denis.baurain@uliege.be>
41              
42             =head1 COPYRIGHT AND LICENSE
43              
44             This software is copyright (c) 2013 by University of Liege / Unit of Eukaryotic Phylogenomics / Denis BAURAIN.
45              
46             This is free software; you can redistribute it and/or modify it under
47             the same terms as the Perl 5 programming language system itself.
48              
49             =cut