Skip to content

Commit 3d03417

Browse files
authored
Batch files should be able to have input files too
1 parent 04a7f9d commit 3d03417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worker/cp-worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def runCellProfiler(message):
160160
cmd = cmdstem + '-p %(DATA)s/%(PL)s -i %(DATA)s/%(IN)s -o %(OUT)s -d ' + cpDone
161161
cmd += ' --data-file=%(DATA)s/%(FL)s -g %(Metadata)s'
162162
else:
163-
cmd = cmdstem + '-p %(DATA)s/%(PL)s -o %(OUT)s -d ' + cpDone + ' --data-file=%(DATA)s/%(FL)s -g %(Metadata)s'
163+
cmd = cmdstem + '-p %(DATA)s/%(PL)s -i %(DATA)s/%(IN)s -o %(OUT)s -d ' + cpDone + ' --data-file=%(DATA)s/%(FL)s -g %(Metadata)s'
164164
cmd = cmd % replaceValues
165165
print('Running', cmd)
166166
logger.info(cmd)

0 commit comments

Comments
 (0)