This file is indexed.

/usr/share/doc/libtfbs-perl/examples/t/06_SimplePFM.t is in libtfbs-perl 0.6.1+dfsg-1+b1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env perl -w

use TFBS::PatternGen::SimplePFM;
use Test;
plan(tests => 1);
my $matrixstring = <<ENDMATRIX 
11  3  0  0  4 0 
0  0  0 10  6  0 
0  8 11  0  0  0 
0  0  0  1  1 11
ENDMATRIX
    ;
my $manpfm = TFBS::Matrix::PFM->new(-matrixstring=>$matrixstring);



my @sequences = qw( AAGCCT AGGCAT AAGCCT
		    AAGCCT AGGCAT AGGCCT
		    AGGCAT AGGTTT AGGCAT
		    AGGCCT AGGCCT );
my $patterngen =
  TFBS::PatternGen::SimplePFM->new(-seq_list=>\@sequences);
  
my $pfm = $patterngen->pattern(); # $pfm is now a TFBS::Matrix::PFM object

ok($manpfm->rawprint, $pfm->rawprint);