Help for this page

Select Code to Download


  1. or download this
            my ($id, $sum, $haploStr) = split ('\t',$_);
            push @{$data{$id}{$sum}}, \$haploStr;
    
  2. or download this
            my ($id, $sum, @haploStr) = split ('\t',$_);
            push @{$data{$id}{$sum}}, \@haploStr;
    
  3. or download this
    print Dumper(\%data);