We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc02943 commit 4e4568eCopy full SHA for 4e4568e
run.py
@@ -7,7 +7,7 @@
7
8
f = open('run.sh', 'wb')
9
for i in range(N_SIMULATIONS):
10
- f.write(('Rscript run.R ' + str(i + 1) + ' > log_' + str(i) + '.txt 2>&1 &\n').encode())
+ f.write(('Rscript run.R ' + str(i + 1) + ' > log_' + str(i + 1) + '.txt 2>&1 &\n').encode())
11
if (i + 1) % CPU_COUNT == 0:
12
f.write('wait\n'.encode())
13
f.close()
0 commit comments