コンドルに送信されたRジョブがあります。コンドルに送信されたRファイル(one.R)が別のRファイル(two.R)を読み取っていますが、コンドルにジョブを送信すると失敗し、その理由は、送信された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
これに関するアイデアに感謝します。
ありがとう、