Skip to content

Commit

Permalink
Update proportions.py (#1135)
Browse files Browse the repository at this point in the history
Fix typo in layer names.
  • Loading branch information
Moloch0 authored Dec 1, 2023
1 parent d89ca6a commit 3fe3d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scvelo/plotting/proportions.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def proportions(
"""
# get counts per cell for each layer
if layers is None:
layers = ["spliced", "unspliced", "ambigious"]
layers = ["spliced", "unspliced", "ambiguous"]
layers_keys = [key for key in layers if key in adata.layers.keys()]
counts_layers = [sum(adata.layers[key], axis=1) for key in layers_keys]

Expand Down

0 comments on commit 3fe3d70

Please sign in to comment.