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