Help for this page

Select Code to Download


  1. or download this
    open my $IFILE, '<', $IDFILE || die "Could not open $IDFILE: $!";
    
  2. or download this
    while ( my $ifile_line = <$IFILE> ) {
        my $hits = substr($ifile_line, 0, 6);
        push @id_hits, $hits;
    }
    
  3. or download this
    my @id_hits=map substr($_, 0, 6), <$IFILE>;