Skip to content

Commit

Permalink
Fix scVI workflow not passing the layer to the component. (#936)
Browse files Browse the repository at this point in the history
* Fix scVI workflow not passing the layer to the component.

* Update CHANGELOG
  • Loading branch information
DriesSchaumont committed Dec 17, 2024
1 parent 12b273e commit c040482
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# openpipelines 1.0.4

## BUG FIXES

* `scvi_leiden` workflow: fix the input layer argument of the workflow not being passed to the scVI component (backported from PR #936 and PR #938).

# openpipelines 1.0.3

## BUG FIXES
Expand Down
3 changes: 2 additions & 1 deletion src/workflows/integration/scvi_leiden/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ workflow run_wf {
"lr_factor": state.lr_factor,
"lr_patience": state.lr_patience,
"output_model": state.output_model,
"modality": state.modality
"modality": state.modality,
"input_layer": state.layer,
]
},
// use map when viash 0.7.6 is released
Expand Down

0 comments on commit c040482

Please sign in to comment.