
Check on the status of the Schedule::SGE queues. You should not use this method directly, rather you should use the Schedule::SGE method that inherits from this, then all the methods herein are available to you.

Rob Edwards (rob@salmonella.org) 3/24/05
Set the user of the processes. If not defined will be guess by whoami
Get the queue status. This will return a hash where each key is the name of a node, and each value is a reference to an array. The array has the following components:
0. Queue type (one of B(atch), I(nteractive), C(heckpointing), P(arallel), T(ransfer) or combinations thereof or N(one)) 1. Processors used 2. Load average 3. State
Get some brief statistics about a job. This method will return a reference to an array with the following statistics: Node the job is/was running on Process ID of the job Load Name of process Username Date and time of submission
for example, my $stats=$sge->brief_job_stats($job);
Returns an array of all jobs that were found in the queues.