


LAUNCHQUEUEJOB - ...
Usage:
LaunchQueueJob(md,executionpath)


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