Help for this page

Select Code to Download


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