Skip to content

Commit 8b8e4a7

Browse files
authored
Merge pull request #218 from ArcInstitute/216-unable-to-specify-negative-control-name-in-data-preprocessing
216 unable to specify negative control name in data preprocessing
2 parents 3f75565 + 04890ed commit 8b8e4a7

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cell-eval"
3-
version = "0.6.7"
3+
version = "0.6.8"
44
description = "Evaluation metrics for single-cell perturbation predictions"
55
readme = "README.md"
66
authors = [

src/cell_eval/_cli/_prep.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,9 @@ def run_prep(args: ap.Namespace):
280280
else args.input.replace(".h5ad", ".prep.vcc"),
281281
pert_col=args.pert_col,
282282
celltype_col=args.celltype_col,
283+
output_pert_col=args.output_pert_col,
284+
output_celltype_col=args.output_celltype_col,
285+
ntc_name=args.ntc_name,
283286
encoding=args.encoding,
284287
allow_discrete=args.allow_discrete,
285288
exp_gene_dim=args.expected_gene_dim if args.expected_gene_dim != -1 else None,

0 commit comments

Comments
 (0)