- or download this
use Probeset; # that is my module
use Data::Dumper;
...
open (DUMP, "> $file);
print DUMP $store;
close DUMP;
- or download this
$probeset = bless( {
'_genechip' => 'Human Genome U133A Array',
...
'_exons_num' => '????',
'_organism' => 'Homo sapiens'
}, 'Probeset' );
- or download this
use Probeset;
open (DUMP, "< $tempdump") or die "Can't open dumping file!";
...
my $probeset;
eval $obj;