Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/scanpy/preprocessing/_highly_variable_genes.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,10 @@ def highly_variable_genes( # noqa: PLR0913
If `batch_key` is given, this denotes in how many batches genes are detected as HVG
`adata.var['highly_variable_intersection']` : :class:`pandas.Series` (dtype `bool`)
If `batch_key` is given, this denotes the genes that are highly variable in all batches
`adata.uns['hvg']` : :class:`dict`
Dictionary with a `'flavor'` entry recording the `flavor` used.
:func:`scanpy.pl.highly_variable_genes` reads it to decide whether to plot
dispersions or variances

"""
if isinstance(flavor, Default):
Expand Down
Loading