我有一个提交给 condor 的 R 作业,提交给 condor 的 R 文件(one.R)正在读取另一个 R 文件(two.R),当我将作业提交给 condor 时,它失败并且原因是提交的 R(one.R) 文件未读取调用的 R 文件(two.R) 文本文件中的错误是:
Error in file(file, "rt") : cannot open the connection
Calls: read.table -> file
In addition: Warning message:
In file(file, "rt") :
cannot open file 'C:/Users/pcname/Desktop/test_case/two.R': Permission denied
Execution halted
我的提交文件是
#test_input.condor
#
executable = C:\R\R-2.10.1\bin\Rscript.exe
arguments = one.R
universe = vanilla
getenv = true
#requirements = ARCH == "INTEL" && OPSYS == "WINNT60"
input = one.R
should_transfer_files = yes
transfer_executable = false
when_to_transfer_output = ON_EXIT
transfer_input_files = C:/Users/OmegaAdmin/Desktop/test_case/two.R
log = test_input.log
output = test_input.out
error = test_input.err
queue
感谢您对此的任何想法。
谢谢,