Skip to content

Commit

Permalink
✏️ Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Nov 4, 2023
1 parent f542050 commit 3812289
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/03-cellxgene-census.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@
},
"outputs": [],
"source": [
"adata_slice = adata_backed[\n",
"adata_backed_slice = adata_backed[\n",
" adata_backed.obs.cell_type.isin(\n",
" [cell_types.dendritic_cell.name, cell_types.neutrophil.name]\n",
" )\n",
Expand All @@ -548,7 +548,7 @@
" & (adata_backed.obs.assay == experimental_factors.ln_10x_3_v2.name)\n",
"]\n",
"\n",
"adata_slice.to_memory()"
"adata_backed_slice.to_memory()"
]
},
{
Expand All @@ -571,6 +571,7 @@
"```\n",
"adata_slices = []\n",
"for file in query:\n",
" adata_backed = file.backed()\n",
" adata_slice = adata_backed[\n",
" adata_backed.obs.cell_type.isin(\n",
" [cell_types.dendritic_cell.name, cell_types.neutrophil.name]\n",
Expand Down

0 comments on commit 3812289

Please sign in to comment.