Hi Everyone,
I have a R program which calls other R programs and i wanted to run two instances of main R program with different input and when i submit this to condor condor could only execute one of them, error file said
"Fatal error: cannot open file 'call_sqrt_2.R': No such file or directory"
Here is my submit file
---------------------------------------------------------------------
universe = vanilla
Executable = C:\Progra~1\R\R-2.11.1-x64\bin\RScript.exe
getenv =
true
input = call_sqrt.R
should_transfer_files = YES
when_to_transfer_output = ON_EXIT
transfer_input_files = add_num.R,sqr_num.R,sqrt.R,sub_num.R
transfer_executable = false
Output = test_call_sqrt.out
Log = test_call_sqrt.log
error = test_call_sqrt.error
arguments = call_sqrt.R
queue
arguments = call_sqrt_2.R
queue
----------------------------------------------------------------------------
Can anyone tell me where i went wrong?
Thanks,
Shruti