


PEEK - check on an existing job running on the cluster
Usage:
md=peek(md);
See also: QueueJobPeek

0001 function md=peek(md) 0002 %PEEK - check on an existing job running on the cluster 0003 % 0004 % Usage: 0005 % md=peek(md); 0006 % 0007 % See also: QueueJobPeek 0008 0009 %Get cielo.rc location 0010 cielo_rc_location=which('cielo.rc'); 0011 0012 %Figure out parameters for this particular cluster 0013 [codepath,executionpath]=ProcessParallelParametersFromCieloRc(md.cluster,cielo_rc_location); 0014 0015 %peek at the queued job 0016 md=QueueJobPeek(md,executionpath);