Help for this page

Select Code to Download


  1. or download this
    foreach my $line (@lines){
      @lineFields = split( ' ', $line );
    }
    
  2. or download this
    #get the comman separated list of genes
    my @geneItems = split( ',', $lineFileds[3] );
    ...
       #just continue processing and store in hash
    }