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             package Bio::FastParsers::Constants;
2             # ABSTRACT: Distribution-wide constants for Bio::FastParsers
3             $Bio::FastParsers::Constants::VERSION = '0.213510';
4 7     7   62 use strict;
  7         17  
  7         221  
5 7     7   47 use warnings;
  7         20  
  7         175  
6              
7 7     7   3333 use Const::Fast;
  7         8075  
  7         45  
8              
9             use Exporter::Easy (
10 7         55 OK => [ qw(:files) ],
11             TAGS => [
12             files => [ qw($EMPTY_LINE $COMMENT_LINE) ],
13             ],
14 7     7   4040 );
  7         11359  
15              
16             # regexes for parsing files
17              
18             # common
19             const our $EMPTY_LINE => qr{\A\s*\z}xms;
20             const our $COMMENT_LINE => qr{\A(\#)\s*(.*)}xms;
21              
22             1;
23              
24             __END__
25              
26             =pod
27              
28             =head1 NAME
29              
30             Bio::FastParsers::Constants - Distribution-wide constants for Bio::FastParsers
31              
32             =head1 VERSION
33              
34             version 0.213510
35              
36             =head1 DESCRIPTION
37              
38             Nothing to see here.
39              
40             =head1 AUTHOR
41              
42             Denis BAURAIN <denis.baurain@uliege.be>
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