[kepler-dev] [Bug 3543] New: - org.ecoinformatics.seek.R.RExpression

bugzilla-daemon at ecoinformatics.org bugzilla-daemon at ecoinformatics.org
Wed Oct 22 07:49:52 PDT 2008


http://bugzilla.ecoinformatics.org/show_bug.cgi?id=3543

           Summary: org.ecoinformatics.seek.R.RExpression
           Product: Kepler
           Version: 1.0.0
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: actors
        AssignedTo: berkley at nceas.ucsb.edu
        ReportedBy: pea1 at cornell.edu
         QAContact: kepler-dev at ecoinformatics.org


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.


More information about the Kepler-dev mailing list