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

Version 0.3


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

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

Creates a new Admin class.
Return type: Bio::DOOP::Util::Run::Admin object
$admin = Bio::DOOP::Util::Run::Admin->new;
Returns the arrayref of running pids.
for my $i (@{$admin->get_run_pids}){
$admin->kill($i,9);
}
Sends specified signal to a process given by the first arguments.
Return type: none
$admin->kill(1234,SIGINT);
Sets the priority of the process.
Return type: none
$admin->nice(1234,19);