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.2

SYNOPSIS

DESCRIPTION

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

AUTHORS

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

METHODS

new

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

  Create a 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);

  Set the priority of the process.

  Return type :

  none