Skip to content

Commit

Permalink
Revert workflow argument handling to the old method: only passing the
Browse files Browse the repository at this point in the history
image as the first unfilled argument
  • Loading branch information
multimeric committed Dec 21, 2023
1 parent 2a2024a commit f26266f
Show file tree
Hide file tree
Showing 5 changed files with 259 additions and 233 deletions.
14 changes: 7 additions & 7 deletions core/lls_core/models/lattice_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,13 +268,13 @@ def generate_workflows(
LatticeData.process_into_image,
lattice_slice.data
)
for task_name, arg_index, arg_name in get_workflow_inputs(user_workflow):
update_workflow(
user_workflow,
task_name,
arg_index,
"deskew_image"
)
task_name, arg_index, _arg_name = get_workflow_inputs(user_workflow)
update_workflow(
user_workflow,
task_name,
arg_index,
"deskew_image"
)
yield lattice_slice.copy_with_data(user_workflow)

def check_incomplete_acquisition(self, volume: ArrayLike, time_point: int, channel: int):
Expand Down
Loading

0 comments on commit f26266f

Please sign in to comment.