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 authored Dec 13, 2024
1 parent 45535ff commit f33e7cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@

## BUG FIXES

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

* `scgpt/embedding`: remove unused argument `dbsn` (PR #875).

* `scgpt/binning`: update handling of empty rows in sparse matrices (PR #875).
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 f33e7cc

Please sign in to comment.