Skip to content

Commit

Permalink
Merge pull request #3 from icbi-lab/fix-cluster-annot
Browse files Browse the repository at this point in the history
Fix cluster annotation in tutorial
  • Loading branch information
grst authored Feb 8, 2021
2 parents 2ae877f + e33f00d commit c5bd39b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/tutorial_3k.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ To this end, we add a new column `cnv_status` to `adata.obs`.
```python
adata.obs["cnv_status"] = "normal"
adata.obs.loc[
adata.obs["cnv_leiden"].isin(["13", "9", "15", "5", "11", "10", "16"]), "cnv_status"
adata.obs["cnv_leiden"].isin(["10", "13", "15", "5", "11", "16", "12"]), "cnv_status"
] = "tumor"
```

Expand Down

0 comments on commit c5bd39b

Please sign in to comment.