Skip to content

Commit

Permalink
Merge pull request #14 from hubmapconsortium/popv
Browse files Browse the repository at this point in the history
handles non integer raw matrix for cellxgene data
  • Loading branch information
axdanbol authored Nov 10, 2023
2 parents 71d3367 + b6b26a2 commit 97807db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containers/popv/context/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def prepare_query(

if options["query_layers_key"] == "raw":
options["query_layers_key"] = None
data.X = data.raw.X
data.X = numpy.rint(data.raw.X)

if options["query_layers_key"] == "X":
options["query_layers_key"] = None
Expand Down

0 comments on commit 97807db

Please sign in to comment.