Skip to content

Commit

Permalink
fix argument names
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Jul 1, 2024
1 parent 6433676 commit b77d444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/metrics/mse/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
## VIASH END

print("Load data", flush=True)
input_denoised = ad.read_h5ad(par['input_denoised'], backed="r")
input_denoised = ad.read_h5ad(par['input_prediction'], backed="r")
input_test = ad.read_h5ad(par['input_test'], backed="r")

test_data = ad.AnnData(X=input_test.layers["counts"], dtype="float")
Expand Down
2 changes: 1 addition & 1 deletion src/metrics/poisson/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
## VIASH END

print("Load Data", flush=True)
input_denoised = ad.read_h5ad(par['input_denoised'], backed="r")
input_denoised = ad.read_h5ad(par['input_prediction'], backed="r")
input_test = ad.read_h5ad(par['input_test'], backed="r")

test_data = scprep.utils.toarray(input_test.layers["counts"])
Expand Down

0 comments on commit b77d444

Please sign in to comment.