blib/lib/CracTools/Const.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 9 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 3 | 100.0 |
pod | n/a | ||
total | 12 | 12 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package CracTools::Const; | ||||||
2 | { | ||||||
3 | $CracTools::Const::DIST = 'CracTools'; | ||||||
4 | } | ||||||
5 | # ABSTRACT: Constants for the CracTools-core | ||||||
6 | $CracTools::Const::VERSION = '1.22'; | ||||||
7 | 2 | 2 | 10 | use strict; | |||
2 | 3 | ||||||
2 | 47 | ||||||
8 | 2 | 2 | 9 | use warnings; | |||
2 | 3 | ||||||
2 | 51 | ||||||
9 | 2 | 2 | 11 | use Exporter qw(import); | |||
2 | 2 | ||||||
2 | 127 | ||||||
10 | |||||||
11 | |||||||
12 | our $NOT_AVAILABLE = 'NA'; | ||||||
13 | |||||||
14 | |||||||
15 | our $NUCLEOTIDES = ['A', 'C', 'G', 'T' ]; | ||||||
16 | |||||||
17 | |||||||
18 | 1; | ||||||
19 | |||||||
20 | __END__ |