Help for this page

Select Code to Download


  1. or download this
    my $result = `blastall -i foo -o bar -p blastx -d baz`;
    
    if ($!) {
      die "something bad happened: $!";
    }
    
  2. or download this
    eval {
      $result = `......`;
    ...
    if ($@) {
      die "......";
    }