Skip to content

Commit 991f8fe

Browse files
committed
Fix a bug in the vaa3d command
1 parent 68e24f6 commit 991f8fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ def workflow(in_images, out_path,
3636

3737
#/home/xxx/bin/Vaa3D_CentOS_64bit_v3.458/start_vaa3d.sh -x "home/xxx/bin/Vaa3D_CentOS_64bit_v3.458/plugins/neuron_tracing/MOST_tracing/libmostVesselTracer.so" -f MOST_trace -i "/home/xxx/Documents/TREES_Image3.ome.tif" -p 1,20,20,20
3838
command = "/usr/bin/xvfb-run Vaa3D_CentOS_64bit_v3.458/vaa3d -x /Vaa3D_CentOS_64bit_v3.458/plugins/neuron_tracing/MOST_tracing/libmostVesselTracer.so -f MOST_trace -i {} -o {}.swc " \
39-
"-p \"\" 1 {} {} {}".format(out_file_path, out_file_path[:-4],
39+
"-p 1 {} {} {}".format(out_file_path, out_file_path[:-4],
4040
threshold, seed, slip)
41-
41+
print(command)
4242

4343
return_code = call(command, shell=True, cwd="/") # waits for the subprocess to return
4444
#Move the result file to the output name

0 commit comments

Comments
 (0)