Skip to content

Commit

Permalink
fix: actually fix the bug that disabled stitching (#7)
Browse files Browse the repository at this point in the history
Had input xml used instead of output xml, which was causing the
stitching transform to be applied to the bdv xml instead of the actual
output xml (since it writes in-place)..
  • Loading branch information
akhanf authored Feb 23, 2024
1 parent 342ecdb commit dee8088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def get_fiji_launcher_cmd(wildcards, output, threads, resources):

def get_macro_args_bigstitcher(wildcards, input, output):
return "{dataset_xml} {ds_x} {ds_y} {ds_z} {min_r}".format(
dataset_xml=input.dataset_xml,
dataset_xml=output.dataset_xml,
ds_x=config["bigstitcher"]["calc_pairwise_shifts"]["downsample_in_x"],
ds_y=config["bigstitcher"]["calc_pairwise_shifts"]["downsample_in_y"],
ds_z=config["bigstitcher"]["calc_pairwise_shifts"]["downsample_in_z"],
Expand Down

0 comments on commit dee8088

Please # to comment.