Skip to content

Commit

Permalink
fix multiple separator
Browse files Browse the repository at this point in the history
  • Loading branch information
sainirmayi committed Oct 18, 2024
1 parent b7e473b commit b8c2e46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/datasets/processors/subsample/test_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def test_keep_functionality(run_component):

run_component([
"--input", input_path,
"--keep_cell_type_categories", "acinar:beta",
"--keep_batch_categories", "celseq:inDrop4:smarter",
"--keep_features", ":".join(keep_features),
"--keep_cell_type_categories", "acinar;beta",
"--keep_batch_categories", "celseq;inDrop4;smarter",
"--keep_features", ";".join(keep_features),
"--output", output_path,
"--seed", "123"
])
Expand Down

0 comments on commit b8c2e46

Please sign in to comment.