Skip to content
Snippets Groups Projects
Commit 32b73e3b authored by Christopher Schmied's avatar Christopher Schmied
Browse files

Fixed bug in Snakefile

Pipeline tested and works with single channel data
parent 7145dd22
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,6 @@ configfile: "single_test.yaml" ...@@ -14,7 +14,6 @@ configfile: "single_test.yaml"
# data specific config file, expected to be inside JOBDIR # data specific config file, expected to be inside JOBDIR
# configfile: "tomancak_test_cluster.yaml" # configfile: "tomancak_test_cluster.yaml"
padding_format = "{0:0"+str(padding_of_file_id(int(config["common"]["ntimepoints"])))+"d}" padding_format = "{0:0"+str(padding_of_file_id(int(config["common"]["ntimepoints"])))+"d}"
ds_format = "-"+padding_format+"-00.h5" ds_format = "-"+padding_format+"-00.h5"
...@@ -30,7 +29,9 @@ rule done: ...@@ -30,7 +29,9 @@ rule done:
localrules: define_xml_czi, define_xml_tif, hdf5_xml, xml_merge, timelapse, localrules: define_xml_czi, define_xml_tif, hdf5_xml, xml_merge, timelapse,
duplicate_transformations, external_transform, define_output, duplicate_transformations, external_transform, define_output,
hdf5_xml_output hdf5_xml_output
rule resave_prepared: rule resave_prepared:
input: expand("{dataset}.{suffix}",dataset=[ config["common"]["hdf5_xml_filename"] ], suffix=["xml","h5"]) input: expand("{dataset}.{suffix}",dataset=[ config["common"]["hdf5_xml_filename"] ], suffix=["xml","h5"])
......
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