Help for this page

Select Code to Download


  1. or download this
    while (<$snpIn>) {
        next unless /^(\w+)\s+(\d+\.\d+)/;
        $snpLookup{$1} = $2;
    }
    
  2. or download this
    while (<$mapIn>) {
        next unless /^(\w+)\s+(\w+)/ and exists $snpLookup{$1};
        print "$1    $2\n";
    }