Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

Commit

Permalink
fix genotype umaps label
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <[email protected]>
  • Loading branch information
Zethson committed May 13, 2021
1 parent 4d16b80 commit 0b5c8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sc_toolbox/api/plot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ def genotype_vs_genotype_umaps(
.. image:: /_images/genotype_vs_genotype_umaps.png
"""
genotype_data_1 = adata[adata.obs[genotype_key].isin([genotype_label_1])].copy()
genotype_data_2 = adata[adata.obs[genotype_key].isin([genotype_label_1])].copy()
genotype_data_2 = adata[adata.obs[genotype_key].isin([genotype_label_2])].copy()

fig, (ax1, ax2) = plt.subplots(1, 2, figsize=figsize)
sc.pl.umap(
Expand Down

0 comments on commit 0b5c8bc

Please sign in to comment.