This file is indexed.

/usr/share/doc/infernal/examples/testsuite/bug-i44.pl is in infernal 1.1.2-1.

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

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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#! /usr/bin/perl

# bug i44 - cmalign --mapstr can display half basepairs
#
# EPN, Wed Oct 28 12:59:03 2015
#

$usage = "perl bug-i44.pl <cmbuild> <cmalign>\n";
if ($#ARGV != 1) { die "Wrong argument number.\n$usage"; }

$cmbuild = shift;
$cmalign = shift;
$ok      = 1;

# Make our test alignment, i44.1
#
open (OUT, ">i44.1") || die;
print OUT <<END;
# STOCKHOLM 1.0

BX640422.1/15958-16066   GCACcUUCCCGG
BX640437.1/48199-48307   G.AC.UUCCCGG
CP000089.1/376642-376729 G.AC.UUCCCGG
#=GC SS_cons             <<.AA..>>.aa
#=GC RF                  GCAC.UUCCCGG
//
END
close OUT;
# Make our test sequence to align, i44.2
#
open (OUT, ">i44.2") || die;
print OUT <<END;
>consensus
GACUUCCCGG
END
close OUT;

# build the model
if ($ok) { 
  $output = `$cmbuild -F i44.cm i44.1`;
  if ($? != 0) { $ok = 0; }
  # make sure output includes a 'CPU' string indicating success
  if($output !~ /\n\# CPU/) { 
    $ok = 0;
  }
}

# align the sequence and use --mapali and --mapstr
if ($ok) { 
  $output = `$cmalign --mapali i44.1 --mapstr -o i44.3 i44.cm i44.2`;
  if ($? != 0) { $ok = 0; }
  # make sure output includes a 'CPU' string indicating success
  if($output !~ /\n\# CPU/) { 
    $ok = 0;
  }
}

# make sure the output structure is correct
if ($ok) {
  # make sure there's a hit in the tab file (if the bug exists, there won't be)
  if(open(IN, "i44.3")) { 
    $ok = 0;
    while($line = <IN>) { 
      chomp $line;
      if($line =~ s/^\#=GC SS_cons\s+//) { 
        chomp $line;
        if($line eq "<..A....>..a") { 
          $ok = 1; 
        }
      }
    }
    close(IN);
  }
}

foreach $tmpfile ("i44.1", "i44.2", "i44.3", "i44.cm") { 
  unlink $tmpfile if -e $tmpfile;
}
if ($ok) { print "ok\n";     exit 0; }
else     { print "FAILED\n"; exit 1; }