Skip to content
Snippets Groups Projects
Commit 1ffe1e56 authored by Peter Steinbach's avatar Peter Steinbach
Browse files

fixed wrong indexing in define_xml_tif

parent fc84405d
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ rule define_xml_tif: ...@@ -85,7 +85,7 @@ rule define_xml_tif:
config["define_xml_tif"], config["define_xml_tif"],
jdir=JOBDIR, jdir=JOBDIR,
path_bsh=config["common"]["bsh_directory"] + config["define_xml_tif"]["bsh_file"], path_bsh=config["common"]["bsh_directory"] + config["define_xml_tif"]["bsh_file"],
timepoints="1-"+str(config["common"]["ntimepoints"]) timepoints="0-"+str(int(config["common"]["ntimepoints"])-1)
) )
cmd_string +=" > {log} 2>&1" cmd_string +=" > {log} 2>&1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment