The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

  Bio::DOOP::Util::Run::Admin - Manage the running mofext or fuzznuc processes.

VERSION

  Version 0.1

SYNOPSIS

DESCRIPTION

  This class can manage the Run objects (Run::Mofext and Run::Fuzznuc).

AUTHOR

  Tibor Nagy, Godollo, Hungary and Endre Sebestyen, Martonvasar, Hungary

SUBRUTINES

new

  $admin = Bio::DOOP::Util::Run::Admin->new;
  Create new Admin class.

get_run_pids

  for my $i (@{$admin->get_run_pids}){
     $admin->kill($i,9);
  }
  Returns the arrayref of running pids.

kill

  $admin->kill(1234,SIGINT);
  Send specified signal to a process given by the first arguments.
  Return type: none

nice

  $admin->nice(1234,19);
  This process goes slow down.
  Set the priority of the process.
  Return type: none