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             {
4             $CracTools::Const::DIST = 'CracTools';
5             }
6             # ABSTRACT: Constants for the CracTools-core
7             $CracTools::Const::VERSION = '1.251';
8 1     1   5 use strict;
  1         1  
  1         23  
9 1     1   4 use warnings;
  1         1  
  1         21  
10 1     1   4 use Exporter qw(import);
  1         1  
  1         64  
11              
12              
13             our $NOT_AVAILABLE = 'NA';
14              
15              
16             our $NUCLEOTIDES = ['A', 'C', 'G', 'T' ];
17              
18              
19             our $CRAC_BINARY = "crac";
20              
21              
22             our $INDEX_DEFAULT = "/data/indexes/crac/GRCh38";
23              
24              
25             1;
26              
27             __END__