Help for this page

Select Code to Download


  1. or download this
    my @sections = $str =~ m/^===Comments===\n(.*?)\n=.*?=$/gms;
    
    ...
        print " $2 : $1\n";
    }
    
  2. or download this
    $VAR1 = [
              '
    ...
     Aditional Info : 
    Comments related to the pathway information here.
    
  3. or download this
    my %x = map {
        /^=([^\n]*)=\n.*\n===Comments===\n(.*)$/s ? ( $1 => $2 ) : ()
    } split(/(?=^=[^=])/m,$str);
    
    print Dumper(\%x);
    
  4. or download this
    $VAR1 = {
              'Microarray Data' => '
    ...
    
    '
            };