Actions
Bug #3543
closedorg.ecoinformatics.seek.R.RExpression
Start date:
10/22/2008
Due date:
% Done:
0%
Estimated time:
Bugzilla-Id:
3543
Description
Actor is failing to properly generate directory name for setwd() R command. R is expecting "/" as file separators yet the critical statement uses the OS file separator. See line 304:
OLD:
String execDir = home + workflowName + "_" + WorkflowExecutionListener.getInstance().getId(toplevel()) + sep;
SHOULD BE:
String execDir = home + workflowName + "_" + WorkflowExecutionListener.getInstance().getId(toplevel()) + "/";
It seems that actor would not run properly on any Windows OS with current code.
Actions