


QUEUEJOBPEEK - ...
Usage:
QueueJobPeek(md,executionpath)


0001 function md=QueueJobPeek(md,executionpath) 0002 %QUEUEJOBPEEK - ... 0003 % 0004 % Usage: 0005 % QueueJobPeek(md,executionpath) 0006 0007 %First try and figure out if there is a special script for thie particular cluster 0008 function_name=['QueueJobPeek' md.cluster]; 0009 if exist(function_name,'file'), 0010 %Call this function: 0011 eval(['md=' function_name '(md,executionpath);']); 0012 else 0013 %Call the generic QueueJobPeek: 0014 md=QueueJobPeekGeneric(md,executionpath); 0015 end