Help for this page

Select Code to Download


  1. or download this
            undef = <$trf> for 1 .. 4;
    
    ...
                chomp $line;
                my @line=split("\t",$line);
    
  2. or download this
            my %hash = (); #initiate empty hash
    
    ...
                chomp $line;
                my @line = split /\t/, $line;