[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Condor-users] problem with submit file



Hi Everyone,

I have a program that runs 100 stimulations and it calls other functions which are written in separate files.I'm facing a problem while submitting this file to the condor,
The error i'm getting immediately after submission is 
Can't open "C:\ccccc\Desktop\new_sim\one.R" flags 00 "NoFile or directory found"

I shared the 
Here is my Submit file
*********************************************************************
#test_case.sub

universe = vanilla
Executable = RBatch.bat
arguments= main_program.R
getenv = true

input = main_program.R

should_transfer_files = YES
when_to_transfer_output = ON_EXIT
transfer_input_files = one.R, two.R, three.R, four.R, five.R,six.R,seven.R
transfer_executable = false

Output = test_Sim_out.out
Log = test_Sim_log.log
error = test_Sim_err.error

queue                         
 *************************************************************************************** 
where RBatch.bat is
****************************************************************************************
set PATH=C:\Program Files\R\R-2.11.1-x64\bin
Rscript.exe --vanilla %1
****************************************************************************************
can anyone tell me what might be problem. 

Thanks,