Help for this page

Select Code to Download


  1. or download this
    $bin_file_data{$sampname} = @bindata;
    
  2. or download this
    $bin_file_data{$sampname} = \@bindata;
    
    ...
    # to taking a direct reference to it
    
    @{ $bin_file_data{$sampname} } = @bindata;
    
  3. or download this
    # use the whole array
    
    ...
    # get a single element
    
    my $thing = $bin_file_data{$sampname}->[0];