Help for this page

Select Code to Download


  1. or download this
    while (<FILE1>) {
        my ($ID1, undef, undef, undef, $Seq1) = split;
        $bow1{$ID1} = $ID1; # your id is the key and can be got again
    }
    
  2. or download this
    while (<FILE1>) {
        my ($ID1, undef, undef, undef, $Seq1) = split;
        $bow1{$ID1} = $Seq1;   # ID is hash key, Seq is hash value
    }