liana.pp.spatial_neighbors#
- liana.pp.spatial_neighbors(adata, bandwidth=None, cutoff=0.1, max_neighbours=100, kernel='gaussian', set_diag=False, zoi=0, standardize=False, reference=None, spatial_key='spatial', key_added='spatial', inplace=True)#
Generate spatial connectivity weights using Euclidean distance.
- Parameters:
- adata
AnnData Annotated data object.
- bandwidth
float|None(default:None) Denotes signaling length and controls the maximum distance at which two spots/cells are considered. Corresponds to the units in which spatial coordinates are expressed.
- cutoff
float|None(default:0.1) Values below this cutoff will be set to 0.
- max_neighbours
int(default:100) Maximum nearest neighbours to be considered when generating spatial connectivity weights. Essentially, the maximum number of edges in the spatial connectivity graph.
- kernel
Literal['gaussian','exponential','linear','misty_rbf'] (default:'gaussian') Kernel function used to generate connectivity/proximity weights. It controls the shape of the connectivity weights. The following options are available: [‘gaussian’, ‘exponential’, ‘linear’, ‘misty_rbf’].
- set_diag
bool(default:False) Logical, sets connectivity diagonal to 0 if
False. Default isTrue.- zoi
float(default:0) Zone of indifference. Values below this cutoff will be set to
np.inf.- standardize
bool(default:False) Whether to (l1) standardize spatial proximities (connectivities) so that they sum to 1. This plays a role when weighing border regions prior to downstream methods, as the number of spots in the border region (and hence the sum of proximities) is smaller than the number of spots in the center. Relevant for methods with unstandardized scores (e.g. product). Default is
False.- reference
ArrayLike|None(default:None) Reference coordinates to use when generating spatial connectivity weights. If
None, uses the spatial coordinates inadata.obsm[spatial_key]. This is only relevant if you want to use a different set of coordinates to generate spatial connectivity weights.- spatial_key
str(default:'spatial') Key in
adata.obsmthat contains the spatial coordinates.- key_added
str(default:'spatial') Key to add to
adata.obspifinplace = True. If reference is notNone, key will be added toadata.obsm.- inplace
bool(default:True) Whether to store results in place, or else to return them.
- adata
Notes
This function is adapted from mistyR, and is set to be consistent with the
squidpy.gr.spatial_neighborsfunction in thesquidpypackage.- Return type:
- Returns:
If
inplace = False, returns annp.arraywith spatial connectivity weights. Otherwise, modifies theadataobject with the following key:anndata.AnnData.obsp['{key_added}_connectivities']with the aforementioned array
- Raises:
ValueError – If no
cutofforbandwithare providedAssertionError – If the provided
spatial_keyis not inadata.obsor ifkernelfunction is not valid.
Examples
Weights every pair of spots by how close they are, giving the spatially informed methods the neighbourhood they operate over:
>>> import liana as li >>> adata = li.ds.generate_toy_spatial() >>> li.pp.spatial_neighbors(adata, bandwidth=500)
bandwidthis required and sets the distance over which proximity decays –liana.pp.query_bandwidth()helps pick it – whilekernelsets the shape of that decay.