17 Aug
2009
17 Aug
'09
8:06 a.m.
Assaf Gordon wrote:
Chris Cole wrote, On 08/14/2009 11:38 AM:
Can confirm it works fine on our setup. Very nifty!
I'm glad to hear it's working fine.
although I'd prefer not to change the job name to the user's email (I've commented out that bit of the code). If anything, I'd rather the job name reflected the tool being used.
To put the tool name as the job's name, replace the line that says:
job_name = str(job.history.user.email)
with:
job_name = job_wrapper.tool.name
Leave the rest of the sanitation code in place, because I'm not sure which characters are valid as SGE job names.
Perfect, thanks! Chris