File Coverage

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.25';
7 1     1   3 use strict;
  1         0  
  1         22  
8 1     1   3 use warnings;
  1         0  
  1         20  
9 1     1   2 use Exporter qw(import);
  1         2  
  1         64  
10              
11              
12             our $NOT_AVAILABLE = 'NA';
13              
14              
15             our $NUCLEOTIDES = ['A', 'C', 'G', 'T' ];
16              
17              
18             our $CRAC_BINARY = "crac";
19              
20              
21             our $INDEX_DEFAULT = "/data/indexes/crac/GRCh38";
22              
23              
24             1;
25              
26             __END__