Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for my $i ($min..$max) {
       print(join("\t", $i, map { $_->{$i} ? 'yes' : '' } @lkups), "\n");
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    for my $i ( sort { $a <=> $b } keys(%global_lkup) ) {
       print(join("\t", $i, map { $_->{$i} ? 'yes' : '' } @lkups), "\n");
    }