This file is indexed.

/usr/share/art-nextgen-simulation-tools/SOLiD_profiles/getPsuedoProfile.pl is in art-nextgen-simulation-tools-profiles 20160605+dfsg-2.

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
open(F1, $ARGV[0]) or die $!;
open(F2, $ARGV[1]) or die $!;
while(<F1>){
     	chomp;
       	@aa=split /\s+/;
       	$aa[0]=($aa[0]-1)*2;
       	printf "%s\n", join "\t", @aa;
	my $bf=<F2>;
     	chomp;
       	@aa=split /\s+/,$bf; $aa[0]=($aa[0]-1)*2+1; printf "%s\n", join "\t", @aa;
}