This file is indexed.

/usr/bin/loki_dist is in loki 2.4.7.4-7.

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
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#!/usr/bin/perl
#
# Script to estimate the Bayes Factor for linkage
# for small regions of chromosome and output in
# tabular format suitable for gnuplot or other
# plotting programs.  If gnuplot is installed,
# can invoke it directly to produce screen or
# postscript plots.
#
# Usage: dist.pl -q -C -f outfile -p posfile -b binsize 
#                -o psfile -d datafile -c chromosome
#                -i [start iteration][,:-][stop iteration]
# outfile defaults to loki.out
# posfile defaults to loki.pos
# binsize defaults to 1[cM]
# if -c option not set, looks at all chromsomes (linkage groups) fitted
# -d sets basename for temporary datafiles
# -o psfile instructs the script to get gnuplot to produce a postscript output into psfile
# -C turns on colour postscript (only has effect with -o option)
# -q does not invoke gnuplot
# -i sets iteration range
#
# Works with loki_2.3
# 
# Simon Heath - September 2000
#
use Getopt::Std;
use IO::File;
use POSIX qw(tmpnam);
use strict;
my (%opt,$model,$fg,$ch,$nmk,$lg,$file,$sex_map,$start,$stop,$tmp);
my (%chrom,@mkchrom,@mkpos,@mkname,@map_length,@map_start,@map_end);
getopts('qCc:b:o:i:d:p:f:h?',\%opt);
if($opt{h} || $opt{'?'}) {
  print "usage: dist.pl -q -C -f outfile -p posfile -b binsize\n               -o psfile -d datafile -c chromsome\n               -i [start iteration][,:-][stop iteration]\n";
  exit(0);
}
if(defined($opt{c})) { die "Invalid chromosome number\n" if($opt{c}<1); }
# -i option sets a range of iterations to consider
if($opt{i}) {
  $tmp=$opt{i};
  if($tmp=~/^([1-9][0-9]*)(.*)/) {
    $start=$1;
	 $tmp=$2;
  }
  if($tmp=~/^[,-:](.*)/) {
    $tmp=$1;
	 if($tmp=~/^([1-9][0-9]*)/) {
	   $stop=$1;
	 }
  }
  die "Bad -i option\n" if(!defined($start) && !defined($stop));
  if(defined($start) && defined($stop) && $start>$stop) {
    $tmp=$start;
	 $start=$stop;
	 $stop=$tmp;
  }
  $start=1 if(!defined($start));
}
$file=$opt{f}?$opt{f}:"loki.out";
$sex_map=0;
open FILE,$file or die "Could not open file '$file'\n";
#
# We need to get some details about linkage groups, chromosome positions
# and map lengths out of the header
#
while(<FILE>) {
  # Read in model
  $model=$1 if(/^Model: (.+)/);
  # Get rid of qutoes as they mess up Gnuplot
  $model=~s/\'//g;
  if(/^Linkage groups:$/) {
    $fg=1;
	 next;
  }
  if($fg==1) {
    # Check for linkage group names and map lengths
    if(/(\d+): (.*)$/) {
	   $lg=$1+0;
		if(!$opt{c} || $lg eq $opt{c}) {
		  if($2=~/^(.*\S)\s+Map range: (.*)/) {
	       $chrom{$lg}=$1;
		    if($2=~/\((-?[0-9.]+)cM to (-?[0-9.]+)cM\)(.*)/) {
		      $map_start[$lg][0]=$1;
		      $map_end[$lg][0]=$2;
			   if($3=~/\((-?[0-9.]+)cM to (-?[0-9.]+)cM\)/) {
		        $map_start[$lg][1]=$1;
		        $map_end[$lg][1]=$2;
				  $sex_map=1;
			   }
		    } else { die "Error reading linkage group map range\n"; }
		  } else { die "Error reading linkage group name\n"; }
		}
	 # Pick up marker names and positions
    } elsif(/^\s+(.+)\s+-\s+([\d\.]+)\s*([\d\.]*)/) {
		if(!$opt{c} || $lg eq $opt{c}) {
	     $mkchrom[$nmk]=$lg;
	     $mkpos[$nmk][0]=$2;
	     $mkpos[$nmk][1]=$3;
	     $mkname[$nmk++]=$1;
		}
	 } else {
	   # Check for total map length
      if(/^Total Map Length: (.*)$/) {
		  if($1=~/(\d\d*\.?\d*)cM(.*)/) {
		    $map_length[0]=$1;
			 if($2=~/(\d\d*\.?\d*)cM$/) {
			   $map_length[1]=$1;
			   $sex_map=1;
			 }
		  } else { die "Error reading map lengths\n"; }	
		  $fg=2;
	     last;
	   }
	 }
  }
}
close FILE;
die "No linked chromosomes found\n" unless $fg==2;
# Now start reading data from loki.pos
$file=$opt{p}?$opt{p}:"loki.pos";
open FILE,$file or die "Could not open file '$file'\n";
my($it,$bw,$rep,$rep1,$i,$j,$k,$x,$kk,$p,$n_qtl,$n);
my(@bin,@bin1,@sex,$sx,$skip);
$sex[0]="Male";
$sex[1]="Female";
# Set bin width
$bw=$opt{b}?$opt{b}:1;
while(<FILE>) {
  split;
  $k=@_;
  # Skip empty lines
  next if(!$k);
  # Get number of iterations from end of line
  if($_[$k-1]=~/(.*):(\d+)/) {
    $rep=$2;
	 $skip=0;
	 $rep1=$rep;
	 if($opt{i}) {
	   if($start>$it+$rep) {$skip=1;} 
	   elsif($start>$it+1) {$rep1=$it+$rep+1-$start;}
		if(defined($stop)) {
		  if($stop<=$it) {$skip=2;}
		  elsif($stop<=$it+$rep) {$rep1-=$it+$rep-$stop;}
		}
	 }
	 if($rep1 && !$skip) {
	   $_[$k-1]=$1;
      $i=0;
	   $n_qtl=0;
	   undef @bin1;
		# Go though rest of line
		while($i<$k) {
	     $lg=$_[$i++]; # Linkage group
		  $n=$_[$i++];  # Number if QTLs in linkage group
		  $n_qtl+=$n;   # Add on to total QTL count
		  if($lg) {     # If linked, go thought QTL positions
		    $j=0;
			 while($j<$n) {
		      for($sx=0;$sx<=$sex_map;$sx++) {
		        $x=$_[$i++]; # Get position
			     $kk=int(($x-$map_start[$lg][$sx])/$bw); # Get offset from start of map, and compute bin
			     $bin1[$sx][$lg]{$kk}=1; # Add count to bin
			   }
				$j++;
			   die "Invalid number of columns\n" if($i>$k);
		    }
		  }
	   }
		for($sx=0;$sx<=$sex_map;$sx++) {
			if($map_length[$sx]>0) {
				$p=$bw/$map_length[$sx]; # Prior for 1 QTL being linked to a bin
			} else {
				$p=1;
			}
		  $p=1-((1-$p)**$n_qtl); # Prior of at least 1 QTL in bin
		  foreach $lg (keys %chrom) {
	       $j=$bin1[$sx][$lg];
		    foreach $kk(keys %$j) {
	         $bin[$sx][$lg][$kk]+=$rep1/$p;
		    }
	     }
	   }
	 }
	 $it+=$rep;
	 last if($skip==2);
  }
}
close FILE;
if($opt{i}) {
  $stop=$it if(!defined($stop));
  $it=$stop-$start+1;
}
if($it) {
  # Set up temporary files for writing out data
  my(@name,$name1,@fh,$fh1,$ff,$nch);
  foreach $lg(keys %chrom) {$nch++;}
  if($opt{d}) {
    foreach $lg(keys %chrom) {
      $name[$lg]=$opt{d}.".dat_".$chrom{$lg};
	   $name[$lg].="_m" if($sex_map);
      $fh[$lg]=IO::File->new("> $name[$lg]") or die "Couldn't open data file\n";
	   if($sex_map) {
        $name[$lg+$nch]=$opt{d}.".dat_".$chrom{$lg}."_f";
        $fh[$lg+$nch]=IO::File->new("> $name[$lg+$nch]") or die "Couldn't open data file\n";
	   }
    }
  } else {
    foreach $lg(keys %chrom) {
      for($sx=0;$sx<=$sex_map;$sx++) {
        do{$name[$lg+$sx*$nch]=tmpnam()}
        until $fh[$lg+$sx*$nch]=IO::File->new($name[$lg+$sx*$nch],O_RDWR|O_CREAT|O_EXCL);
	   }
    }
  }
  # Set handler to delete files after the script ends if the -d option was not used
  END {
    if(!$opt{d}) {
      foreach $lg(keys %chrom) {
        for($i=0;$i<=$sex_map;$i++) { unlink($name[$lg+$i*$nch]); }
	   }
    }
  }
  # Write out data
  foreach $lg(keys %chrom) {
    for($sx=0;$sx<=$sex_map;$sx++) {
	   $x=$map_start[$lg][$sx]+.5*$bw;
		$ff=$fh[$lg+$sx*$nch];
		$kk=0;
		while($x<=$map_end[$lg][$sx]) {
		  print $ff $x+.5," ",$bin[$sx][$lg][$kk++]/$it,"\n";
		  $x+=$bw;
		}
		close $ff;
    }
  }
  # Open gnuplot control file
  if($opt{d}) {
    $name1=$opt{d};
    $fh1=IO::File->new("> $name1") or die "Couldn't open data file\n";
  } else {
    do{$name1=tmpnam()}
    until $fh1=IO::File->new($name1,O_RDWR|O_CREAT|O_EXCL);
  }
  # Set handler to delete file after the script ends if the -d option was not used
  END {unlink($name1) if(!$opt{d});}
  # If outputting postscript, set options
  if($opt{o}) {
    $j="\"Times-Roman\" 14";
    $j="color solid ".$j if($opt{C});
    print $fh1 "set term postscript $j\nset output \'$opt{o}\'\n";
    print $fh1 "set xlabel \'Position\' 0,-2.5\n";
  }
  # Write rest of gnuplot control file
  foreach $lg(sort{$a<=>$b} keys %chrom) {
    # Set axis labels
    print $fh1 "set ylabel \'L-Score'\nset xlabel \'Position\'\n";
    for($sx=0;$sx<=$sex_map;$sx++) {
	   # Set plot title
      if($sex_map) { print $fh1 "set title \'$model -- $chrom{$lg} - $sex[$sx] map\'\n"; }
	   else { print $fh1 "set title \'$model -- $chrom{$lg}\'\n"; }
		# Turn off keys, set grid option
      print $fh1 "set nokey\nset grid\n";
		# Set tic marks to correspond to marker positions
	   $n=0;
	   for($i=0;$i<$nmk;$i++) {
	     $ch=$mkchrom[$i];
		  if($ch eq $lg) {
		    $x=$mkpos[$i][$sx];
          if(!$n) { print $fh1 "set xtics rotate ("; }
	       else { print $fh1 ",\\\n"; }
	       print $fh1 "\"".$mkname[$i]."\" ".$x;
	       $n++;
		  }
		}
		if($n) { print $fh1 ")\n"; }
		# Set xrange to correspond to map length
		print $fh1 "set xrange[$map_start[$lg][$sx]:$map_end[$lg][$sx]]\n";
		# Plot
		print $fh1 "plot \'",$name[$lg+$sx*$nch],"\' u 1:2 w l\n\n";
		# Wait for <return> (unless producing postscript)
		print $fh1 "pause -1\n" if(!$opt{o});
	 }
  }
  close $fh1;
  # Call postscript if quiet option not set
  system("gnuplot $name1") if(!$opt{q});
}