Help for this page

Select Code to Download


  1. or download this
    my @inInterval = map { $_->[1] } grep { $start <= $_->[0] and $_->[0] 
    +<= $end } @SNPs;
    
  2. or download this
    open my $CG, "<", $cg_input or die "can't open $cg_input\n";
    my @SNPs = map { [ (split /\t/)[3], $_ ] } <$CG>;
    ...
        close $OUT;
    }
    close($INTERVAL);